bootstrap-reboot.css 4.8 KB

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