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.
 
 
 

101 regels
1.6 KiB

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