25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

98 lines
1.5 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: 30px;
  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: @font-family-mono;
  21. margin-bottom: 15px;
  22. color: @dark-blue;
  23. font-size: 35px;
  24. }
  25. @media (min-width: @screen-sm-min) {
  26. ul {
  27. float: right;
  28. margin: 33px 0;
  29. }
  30. h1 {
  31. float: left
  32. }
  33. }
  34. a {
  35. text-decoration: none;
  36. font-size: 15px;
  37. color: @dark-gray;
  38. }
  39. }
  40. h2 {
  41. text-align: center;
  42. font-size: 35px;
  43. @media (min-width: @screen-sm-min) {
  44. font-size: 50px;
  45. }
  46. }
  47. .btn-cta {
  48. .transition(all @animation-duration);
  49. padding: 10px 50px;
  50. border: 2px solid @red;
  51. font-size: 20px;
  52. color: @red;
  53. border-radius: 10px;
  54. display: inline-block;
  55. text-decoration: none;
  56. &:hover {
  57. text-decoration: none;
  58. border-color: @dark-blue;
  59. color: @dark-blue;
  60. }
  61. }
  62. .wrapper {
  63. margin: 0 auto;
  64. max-width: 1100px;
  65. .container;
  66. }
  67. section {
  68. // padding: 50px 0
  69. }
  70. img {
  71. max-width: 100%;
  72. margin: 0 auto;
  73. }
  74. a {
  75. text-decoration: underline;
  76. color: @dark-blue;
  77. &:hover {
  78. text-decoration: none;
  79. color: inherit;
  80. }
  81. }
  82. ::selection {
  83. background: @red;
  84. }
  85. ::-moz-selection {
  86. background: @red;
  87. }