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.

310 lines
4.0 KiB

  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6. html {
  7. font-family: sans-serif;
  8. line-height: 1.15;
  9. -webkit-text-size-adjust: 100%;
  10. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  11. font-size:14px;
  12. }
  13. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  14. display: block;
  15. }
  16. body {
  17. margin: 0;
  18. font-size: 1rem;
  19. font-weight: 400;
  20. line-height: 1.5;
  21. color: #212529;
  22. text-align: left;
  23. background-color: #fff;
  24. }
  25. [tabindex="-1"]:focus {
  26. outline: 0 !important;
  27. }
  28. hr {
  29. box-sizing: content-box;
  30. height: 0;
  31. overflow: visible;
  32. }
  33. h1, h2, h3, h4, h5, h6 {
  34. margin-top: 0;
  35. margin-bottom: 0.5rem;
  36. }
  37. p {
  38. margin-top: 0;
  39. margin-bottom: 1rem;
  40. }
  41. abbr[title],
  42. abbr[data-original-title] {
  43. text-decoration: underline;
  44. -webkit-text-decoration: underline dotted;
  45. text-decoration: underline dotted;
  46. cursor: help;
  47. border-bottom: 0;
  48. -webkit-text-decoration-skip-ink: none;
  49. text-decoration-skip-ink: none;
  50. }
  51. address {
  52. margin-bottom: 1rem;
  53. font-style: normal;
  54. line-height: inherit;
  55. }
  56. ol,
  57. ul,
  58. dl {
  59. margin:0;
  60. }
  61. dt {
  62. font-weight: 700;
  63. }
  64. dd {
  65. margin:0;
  66. }
  67. blockquote {
  68. margin: 0;
  69. }
  70. b,
  71. strong {
  72. font-weight: 700;
  73. }
  74. small {
  75. font-size: 80%;
  76. }
  77. sub,
  78. sup {
  79. position: relative;
  80. font-size: 75%;
  81. line-height: 0;
  82. vertical-align: baseline;
  83. }
  84. sub {
  85. bottom: -.25em;
  86. }
  87. sup {
  88. top: -.5em;
  89. }
  90. a {
  91. color: #007bff;
  92. text-decoration: none;
  93. background-color: transparent;
  94. &:hover {
  95. color: #0056b3;
  96. text-decoration: none;
  97. }
  98. &:not([href]):not([tabindex]) {
  99. color: inherit;
  100. text-decoration: none;
  101. &:hover,
  102. &:focus {
  103. color: inherit;
  104. text-decoration: none;
  105. }
  106. &:focus {
  107. outline:0;
  108. }
  109. }
  110. }
  111. pre,
  112. code,
  113. kbd,
  114. samp {
  115. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  116. font-size: 1em;
  117. }
  118. pre {
  119. margin:0;
  120. overflow: auto;
  121. }
  122. figure {
  123. margin: 0;
  124. }
  125. img {
  126. vertical-align: middle;
  127. border-style: none;
  128. }
  129. svg {
  130. overflow: hidden;
  131. vertical-align: middle;
  132. }
  133. table {
  134. border-collapse: collapse;
  135. }
  136. caption {
  137. padding-top: 0.75rem;
  138. padding-bottom: 0.75rem;
  139. color: #6c757d;
  140. text-align: left;
  141. caption-side: bottom;
  142. }
  143. th {
  144. text-align: inherit;
  145. }
  146. label {
  147. display: inline-block;
  148. margin-bottom: 0.5rem;
  149. }
  150. button {
  151. border-radius: 0;
  152. }
  153. button:focus {
  154. outline: 1px dotted;
  155. outline: 5px auto -webkit-focus-ring-color;
  156. }
  157. input,
  158. button,
  159. select,
  160. optgroup,
  161. textarea {
  162. margin: 0;
  163. font-family: inherit;
  164. font-size: inherit;
  165. line-height: inherit;
  166. }
  167. button,
  168. input {
  169. overflow: visible;
  170. }
  171. button,
  172. select {
  173. text-transform: none;
  174. }
  175. select {
  176. word-wrap: normal;
  177. }
  178. button,
  179. [type="button"],
  180. [type="reset"],
  181. [type="submit"] {
  182. -webkit-appearance: button;
  183. }
  184. button:not(:disabled),
  185. [type="button"]:not(:disabled),
  186. [type="reset"]:not(:disabled),
  187. [type="submit"]:not(:disabled) {
  188. cursor: pointer;
  189. }
  190. button::-moz-focus-inner,
  191. [type="button"]::-moz-focus-inner,
  192. [type="reset"]::-moz-focus-inner,
  193. [type="submit"]::-moz-focus-inner {
  194. padding: 0;
  195. border-style: none;
  196. }
  197. input[type="radio"],
  198. input[type="checkbox"] {
  199. box-sizing: border-box;
  200. padding: 0;
  201. }
  202. input[type="date"],
  203. input[type="time"],
  204. input[type="datetime-local"],
  205. input[type="month"] {
  206. -webkit-appearance: listbox;
  207. }
  208. textarea {
  209. overflow: auto;
  210. resize: vertical;
  211. }
  212. fieldset {
  213. min-width: 0;
  214. padding: 0;
  215. margin: 0;
  216. border: 0;
  217. }
  218. legend {
  219. display: block;
  220. width: 100%;
  221. max-width: 100%;
  222. padding: 0;
  223. margin-bottom: .5rem;
  224. font-size: 1.5rem;
  225. line-height: inherit;
  226. color: inherit;
  227. white-space: normal;
  228. }
  229. progress {
  230. vertical-align: baseline;
  231. }
  232. [type="number"]::-webkit-inner-spin-button,
  233. [type="number"]::-webkit-outer-spin-button {
  234. height: auto;
  235. }
  236. [type="search"] {
  237. outline-offset: -2px;
  238. -webkit-appearance: none;
  239. }
  240. [type="search"]::-webkit-search-decoration {
  241. -webkit-appearance: none;
  242. }
  243. ::-webkit-file-upload-button {
  244. font: inherit;
  245. -webkit-appearance: button;
  246. }
  247. output {
  248. display: inline-block;
  249. }
  250. summary {
  251. display: list-item;
  252. cursor: pointer;
  253. }
  254. template {
  255. display: none;
  256. }
  257. [hidden] {
  258. display: none !important;
  259. }