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.
 
 
 

92 lines
1.4 KiB

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