Main.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. * { box-sizing: border-box; font-family: Roboto, sans-serif; }
  2. html {
  3. width: 100%;
  4. height: 100%;
  5. body {
  6. width: 100%;
  7. height: 100%;
  8. margin: 0;
  9. padding: 0;
  10. }
  11. }
  12. ul {
  13. list-style: none;
  14. margin: 0;
  15. display: block;
  16. }
  17. input[type=range] {
  18. -webkit-appearance: none;
  19. width: 100%;
  20. margin: 7.3px 0;
  21. }
  22. input[type=range]:focus {
  23. outline: none;
  24. }
  25. input[type=range]::-webkit-slider-runnable-track {
  26. width: 100%;
  27. height: 5.2px;
  28. cursor: pointer;
  29. box-shadow: 0;
  30. background: #c2c0c2;
  31. border-radius: 0;
  32. border: 0;
  33. }
  34. input[type=range]::-webkit-slider-thumb {
  35. box-shadow: 0;
  36. border: 0;
  37. height: 19px;
  38. width: 19px;
  39. border-radius: 15px;
  40. background: #03a9f4;
  41. cursor: pointer;
  42. -webkit-appearance: none;
  43. margin-top: -6.5px;
  44. }
  45. input[type=range]::-moz-range-track {
  46. width: 100%;
  47. height: 5.2px;
  48. cursor: pointer;
  49. box-shadow: 0;
  50. background: #c2c0c2;
  51. border-radius: 0;
  52. border: 0;
  53. }
  54. input[type=range]::-moz-range-thumb {
  55. box-shadow: 0;
  56. border: 0;
  57. height: 19px;
  58. width: 19px;
  59. border-radius: 15px;
  60. background: #03a9f4;
  61. cursor: pointer;
  62. -webkit-appearance: none;
  63. margin-top: -6.5px;
  64. }
  65. input[type=range]::-ms-track {
  66. width: 100%;
  67. height: 5.2px;
  68. cursor: pointer;
  69. box-shadow: 0;
  70. background: #c2c0c2;
  71. border-radius: 1.3px;
  72. }
  73. input[type=range]::-ms-fill-lower {
  74. background: #c2c0c2;
  75. border: 0;
  76. border-radius: 0;
  77. box-shadow: 0;
  78. }
  79. input[type=range]::-ms-fill-upper {
  80. background: #c2c0c2;
  81. border: 0;
  82. border-radius: 0;
  83. box-shadow: 0;
  84. }
  85. input[type=range]::-ms-thumb {
  86. box-shadow: 0;
  87. border: 0;
  88. height: 15px;
  89. width: 15px;
  90. border-radius: 15px;
  91. background: #03a9f4;
  92. cursor: pointer;
  93. -webkit-appearance: none;
  94. margin-top: 1.5px;
  95. }
  96. body {
  97. background-color: #f5f5f5;
  98. }
  99. h1, h2, h3, h4, h5, h6 {
  100. font-weight: 400;
  101. line-height: 1.1;
  102. }
  103. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  104. font-weight: inherit;
  105. }
  106. h1 {
  107. font-size: 4.2rem;
  108. line-height: 110%;
  109. margin: 2.1rem 0 1.68rem 0;
  110. }
  111. h2 {
  112. font-size: 3.56rem;
  113. line-height: 110%;
  114. margin: 1.78rem 0 1.424rem 0;
  115. }
  116. h3 {
  117. font-size: 2.92rem;
  118. line-height: 110%;
  119. margin: 1.46rem 0 1.168rem 0;
  120. }
  121. h4 {
  122. font-size: 2.28rem;
  123. line-height: 110%;
  124. margin: 1.14rem 0 0.912rem 0;
  125. }
  126. h5 {
  127. font-size: 1.64rem;
  128. line-height: 110%;
  129. margin: 0.82rem 0 0.656rem 0;
  130. }
  131. h6 {
  132. font-size: 1rem;
  133. line-height: 110%;
  134. margin: 0.5rem 0 0.4rem 0;
  135. }
  136. .thin {
  137. font-weight: 200;
  138. }
  139. .left {
  140. float: left !important;
  141. }
  142. .right {
  143. float: right !important;
  144. }
  145. .light-blue {
  146. background-color: #03a9f4 !important;
  147. }
  148. .white {
  149. background-color: #FFFFFF !important;
  150. }