Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

206 строки
3.4 KiB

  1. /* roboto-regular - latin */
  2. @font-face {
  3. font-family: 'Roboto';
  4. font-style: normal;
  5. font-weight: 400;
  6. src: url('../fonts/roboto-v27-latin-regular.eot'); /* IE9 Compat Modes */
  7. src: local(''),
  8. url('../fonts/roboto-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  9. url('../fonts/roboto-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  10. url('../fonts/roboto-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
  11. url('../fonts/roboto-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  12. url('../fonts/roboto-v27-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
  13. }
  14. /* roboto-700 - latin */
  15. @font-face {
  16. font-family: 'Roboto';
  17. font-style: normal;
  18. font-weight: 700;
  19. src: url('../fonts/roboto-v27-latin-700.eot'); /* IE9 Compat Modes */
  20. src: local(''),
  21. url('../fonts/roboto-v27-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  22. url('../fonts/roboto-v27-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
  23. url('../fonts/roboto-v27-latin-700.woff') format('woff'), /* Modern Browsers */
  24. url('../fonts/roboto-v27-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
  25. url('../fonts/roboto-v27-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
  26. }
  27. * {
  28. box-sizing: border-box;
  29. }
  30. html {
  31. font-size: 100%;
  32. scroll-behavior: smooth;
  33. }
  34. body {
  35. width: 100%;
  36. margin: 0;
  37. }
  38. html,
  39. body,
  40. table,
  41. td,
  42. th,
  43. textarea {
  44. font-family: 'Roboto', Arial, Verdana, sans-serif;
  45. font-weight: 400;
  46. font-size: 16px;
  47. line-height: 20px;
  48. text-align: left;
  49. }
  50. input:focus,
  51. select:focus,
  52. textarea:focus,
  53. button:focus {
  54. outline: none;
  55. }
  56. /* clears the 'X' from Internet Explorer */
  57. input[type=search]::-ms-clear {
  58. display: none;
  59. width: 0;
  60. height: 0;
  61. }
  62. input[type=search]::-ms-reveal {
  63. display: none;
  64. width: 0;
  65. height: 0;
  66. }
  67. /* clears the 'X' from Chrome */
  68. input[type="search"]::-webkit-search-decoration,
  69. input[type="search"]::-webkit-search-cancel-button,
  70. input[type="search"]::-webkit-search-results-button,
  71. input[type="search"]::-webkit-search-results-decoration {
  72. display: none;
  73. }
  74. fieldset {
  75. border: none;
  76. }
  77. section,
  78. aside,
  79. ul,
  80. ol,
  81. li,
  82. p,
  83. h1,
  84. h2,
  85. h3,
  86. h4,
  87. h5,
  88. h6,
  89. figure,
  90. div,
  91. dl,
  92. dd,
  93. dt,
  94. table,
  95. td,
  96. th,
  97. fieldset,
  98. button,
  99. label,
  100. input,
  101. textarea {
  102. padding: 0;
  103. margin: 0;
  104. }
  105. h1,
  106. h2,
  107. h3,
  108. h4,
  109. h5,
  110. h6 {
  111. font-weight: 400;
  112. }
  113. ol,
  114. ul {
  115. list-style: none;
  116. }
  117. .table {
  118. table,
  119. td,
  120. th,
  121. thead th {
  122. padding: 0;
  123. border: none;
  124. }
  125. }
  126. input:-moz-placeholder,
  127. textarea:-moz-placeholder {
  128. color: inherit;
  129. opacity: 1;
  130. }
  131. input::-moz-placeholder,
  132. textarea::-moz-placeholder {
  133. color: inherit;
  134. opacity: 1;
  135. }
  136. input::-webkit-input-placeholder,
  137. textarea::-webkit-input-placeholder {
  138. color: inherit;
  139. opacity: 1;
  140. }
  141. input:-ms-input-placeholder,
  142. textarea:-ms-input-placeholder {
  143. color: inherit;
  144. opacity: 1;
  145. }
  146. input {
  147. background: $color-white;
  148. border: 1px solid $color-light-grey;
  149. padding: 0.5rem 0.5rem;
  150. #header & {
  151. padding-top: 0.25rem;
  152. padding-bottom: 0.25rem;
  153. }
  154. }
  155. img {
  156. width: auto;
  157. height: auto;
  158. }
  159. a,
  160. a:hover {
  161. color: inherit;
  162. outline: 0;
  163. }
  164. a:not(footer a),
  165. a:not(footer a):hover {
  166. overflow-wrap: break-word;
  167. word-wrap: break-word;
  168. -ms-word-break: break-all;
  169. word-break: break-all;
  170. word-break: break-word;
  171. -ms-hyphens: auto;
  172. -moz-hyphens: auto;
  173. -webkit-hyphens: auto;
  174. hyphens: auto;
  175. }
  176. strong {
  177. font-weight: 700;
  178. }