bootstrap-reboot.css 4.8 KB

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