You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

102 lines
1.6 KiB

  1. body {
  2. max-width: 2000px;
  3. margin: 0 auto;
  4. }
  5. .browsehappy {
  6. margin: 0.2em 0;
  7. background: orange;
  8. color: white;
  9. padding: 0.2em 0;
  10. }
  11. #navigation {
  12. margin-top: 30px;
  13. ul {
  14. list-style: none;
  15. max-width: 400px;
  16. marghomein: 0 auto;
  17. }
  18. li {
  19. display: inline-block;
  20. padding: 0 15px;
  21. }
  22. h1 {
  23. text-align: center;
  24. font-family: @font-family-mono;
  25. margin-bottom: 15px;
  26. color: @dark-blue;
  27. font-size: 35px;
  28. }
  29. @media (min-width: @screen-sm-min) {
  30. ul {
  31. float: right;
  32. margin: 33px 0;
  33. }
  34. h1 {
  35. float: left
  36. }
  37. }
  38. a {
  39. text-decoration: none;
  40. font-size: 15px;
  41. color: @dark-gray;
  42. }
  43. }
  44. .page-title {
  45. text-align: center;
  46. font-size: 35px;
  47. @media (min-width: @screen-sm-min) {
  48. font-size: 50px;
  49. }
  50. }
  51. .btn-cta {
  52. .transition(all @animation-duration);
  53. padding: 10px 50px;
  54. border: 2px solid @red;
  55. font-size: 20px;
  56. color: @red;
  57. border-radius: 10px;
  58. display: inline-block;
  59. text-decoration: none;
  60. &:hover {
  61. text-decoration: none;
  62. border-color: @dark-blue;
  63. color: @dark-blue;
  64. }
  65. }
  66. .wrapper {
  67. margin: 0 auto;
  68. max-width: 1100px;
  69. .container;
  70. }
  71. section {
  72. // padding: 50px 0
  73. }
  74. img {
  75. max-width: 100%;
  76. margin: 0 auto;
  77. }
  78. a {
  79. text-decoration: underline;
  80. color: @dark-blue;
  81. &:hover {
  82. text-decoration: none;
  83. color: inherit;
  84. }
  85. }
  86. ::selection {
  87. background: @red;
  88. }
  89. ::-moz-selection {
  90. background: @red;
  91. }