bootstrap-reboot.css 4.8 KB

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