bootstrap-reboot.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. /*!
  2. * Bootstrap Reboot v5.0.0-beta2 (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. box-sizing: border-box;
  12. }
  13. @media (prefers-reduced-motion: no-preference) {
  14. :root {
  15. scroll-behavior: smooth;
  16. }
  17. }
  18. body {
  19. margin: 0;
  20. font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  21. font-size: 1rem;
  22. font-weight: 400;
  23. line-height: 1.5;
  24. color: #212529;
  25. background-color: #fff;
  26. -webkit-text-size-adjust: 100%;
  27. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  28. }
  29. [tabindex="-1"]:focus:not(:focus-visible) {
  30. outline: 0 !important;
  31. }
  32. hr {
  33. margin: 1rem 0;
  34. color: inherit;
  35. background-color: currentColor;
  36. border: 0;
  37. opacity: 0.25;
  38. }
  39. hr:not([size]) {
  40. height: 1px;
  41. }
  42. h6, h5, h4, h3, h2, h1 {
  43. margin-top: 0;
  44. margin-bottom: 0.5rem;
  45. font-weight: 500;
  46. line-height: 1.2;
  47. }
  48. h1 {
  49. font-size: calc(1.375rem + 1.5vw);
  50. }
  51. @media (min-width: 1200px) {
  52. h1 {
  53. font-size: 2.5rem;
  54. }
  55. }
  56. h2 {
  57. font-size: calc(1.325rem + 0.9vw);
  58. }
  59. @media (min-width: 1200px) {
  60. h2 {
  61. font-size: 2rem;
  62. }
  63. }
  64. h3 {
  65. font-size: calc(1.3rem + 0.6vw);
  66. }
  67. @media (min-width: 1200px) {
  68. h3 {
  69. font-size: 1.75rem;
  70. }
  71. }
  72. h4 {
  73. font-size: calc(1.275rem + 0.3vw);
  74. }
  75. @media (min-width: 1200px) {
  76. h4 {
  77. font-size: 1.5rem;
  78. }
  79. }
  80. h5 {
  81. font-size: 1.25rem;
  82. }
  83. h6 {
  84. font-size: 1rem;
  85. }
  86. p {
  87. margin-top: 0;
  88. margin-bottom: 1rem;
  89. }
  90. abbr[title],
  91. abbr[data-bs-original-title] {
  92. text-decoration: underline;
  93. -webkit-text-decoration: underline dotted;
  94. text-decoration: underline dotted;
  95. cursor: help;
  96. -webkit-text-decoration-skip-ink: none;
  97. text-decoration-skip-ink: none;
  98. }
  99. address {
  100. margin-bottom: 1rem;
  101. font-style: normal;
  102. line-height: inherit;
  103. }
  104. ol,
  105. ul {
  106. padding-left: 2rem;
  107. }
  108. ol,
  109. ul,
  110. dl {
  111. margin-top: 0;
  112. margin-bottom: 1rem;
  113. }
  114. ol ol,
  115. ul ul,
  116. ol ul,
  117. ul ol {
  118. margin-bottom: 0;
  119. }
  120. dt {
  121. font-weight: 700;
  122. }
  123. dd {
  124. margin-bottom: 0.5rem;
  125. margin-left: 0;
  126. }
  127. blockquote {
  128. margin: 0 0 1rem;
  129. }
  130. b,
  131. strong {
  132. font-weight: bolder;
  133. }
  134. small {
  135. font-size: 0.875em;
  136. }
  137. mark {
  138. padding: 0.2em;
  139. background-color: #fcf8e3;
  140. }
  141. sub,
  142. sup {
  143. position: relative;
  144. font-size: 0.75em;
  145. line-height: 0;
  146. vertical-align: baseline;
  147. }
  148. sub {
  149. bottom: -0.25em;
  150. }
  151. sup {
  152. top: -0.5em;
  153. }
  154. a {
  155. color: #0d6efd;
  156. text-decoration: underline;
  157. }
  158. a:hover {
  159. color: #0a58ca;
  160. }
  161. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  162. color: inherit;
  163. text-decoration: none;
  164. }
  165. pre,
  166. code,
  167. kbd,
  168. samp {
  169. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  170. font-size: 1em;
  171. direction: ltr /* rtl:ignore */;
  172. unicode-bidi: bidi-override;
  173. }
  174. pre {
  175. display: block;
  176. margin-top: 0;
  177. margin-bottom: 1rem;
  178. overflow: auto;
  179. font-size: 0.875em;
  180. }
  181. pre code {
  182. font-size: inherit;
  183. color: inherit;
  184. word-break: normal;
  185. }
  186. code {
  187. font-size: 0.875em;
  188. color: #d63384;
  189. word-wrap: break-word;
  190. }
  191. a > code {
  192. color: inherit;
  193. }
  194. kbd {
  195. padding: 0.2rem 0.4rem;
  196. font-size: 0.875em;
  197. color: #fff;
  198. background-color: #212529;
  199. border-radius: 0.2rem;
  200. }
  201. kbd kbd {
  202. padding: 0;
  203. font-size: 1em;
  204. font-weight: 700;
  205. }
  206. figure {
  207. margin: 0 0 1rem;
  208. }
  209. img,
  210. svg {
  211. vertical-align: middle;
  212. }
  213. table {
  214. caption-side: bottom;
  215. border-collapse: collapse;
  216. }
  217. caption {
  218. padding-top: 0.5rem;
  219. padding-bottom: 0.5rem;
  220. color: #6c757d;
  221. text-align: left;
  222. }
  223. th {
  224. text-align: inherit;
  225. text-align: -webkit-match-parent;
  226. }
  227. thead,
  228. tbody,
  229. tfoot,
  230. tr,
  231. td,
  232. th {
  233. border-color: inherit;
  234. border-style: solid;
  235. border-width: 0;
  236. }
  237. label {
  238. display: inline-block;
  239. }
  240. button {
  241. border-radius: 0;
  242. }
  243. button:focus:not(:focus-visible) {
  244. outline: 0;
  245. }
  246. input,
  247. button,
  248. select,
  249. optgroup,
  250. textarea {
  251. margin: 0;
  252. font-family: inherit;
  253. font-size: inherit;
  254. line-height: inherit;
  255. }
  256. button,
  257. select {
  258. text-transform: none;
  259. }
  260. [role=button] {
  261. cursor: pointer;
  262. }
  263. select {
  264. word-wrap: normal;
  265. }
  266. [list]::-webkit-calendar-picker-indicator {
  267. display: none;
  268. }
  269. button,
  270. [type=button],
  271. [type=reset],
  272. [type=submit] {
  273. -webkit-appearance: button;
  274. }
  275. button:not(:disabled),
  276. [type=button]:not(:disabled),
  277. [type=reset]:not(:disabled),
  278. [type=submit]:not(:disabled) {
  279. cursor: pointer;
  280. }
  281. ::-moz-focus-inner {
  282. padding: 0;
  283. border-style: none;
  284. }
  285. textarea {
  286. resize: vertical;
  287. }
  288. fieldset {
  289. min-width: 0;
  290. padding: 0;
  291. margin: 0;
  292. border: 0;
  293. }
  294. legend {
  295. float: left;
  296. width: 100%;
  297. padding: 0;
  298. margin-bottom: 0.5rem;
  299. font-size: calc(1.275rem + 0.3vw);
  300. line-height: inherit;
  301. }
  302. @media (min-width: 1200px) {
  303. legend {
  304. font-size: 1.5rem;
  305. }
  306. }
  307. legend + * {
  308. clear: left;
  309. }
  310. ::-webkit-datetime-edit-fields-wrapper,
  311. ::-webkit-datetime-edit-text,
  312. ::-webkit-datetime-edit-minute,
  313. ::-webkit-datetime-edit-hour-field,
  314. ::-webkit-datetime-edit-day-field,
  315. ::-webkit-datetime-edit-month-field,
  316. ::-webkit-datetime-edit-year-field {
  317. padding: 0;
  318. }
  319. ::-webkit-inner-spin-button {
  320. height: auto;
  321. }
  322. [type=search] {
  323. outline-offset: -2px;
  324. -webkit-appearance: textfield;
  325. }
  326. /* rtl:raw:
  327. [type="tel"],
  328. [type="url"],
  329. [type="email"],
  330. [type="number"] {
  331. direction: ltr;
  332. }
  333. */
  334. ::-webkit-search-decoration {
  335. -webkit-appearance: none;
  336. }
  337. ::-webkit-color-swatch-wrapper {
  338. padding: 0;
  339. }
  340. ::file-selector-button {
  341. font: inherit;
  342. }
  343. ::-webkit-file-upload-button {
  344. font: inherit;
  345. -webkit-appearance: button;
  346. }
  347. output {
  348. display: inline-block;
  349. }
  350. iframe {
  351. border: 0;
  352. }
  353. summary {
  354. display: list-item;
  355. cursor: pointer;
  356. }
  357. progress {
  358. vertical-align: baseline;
  359. }
  360. [hidden] {
  361. display: none !important;
  362. }
  363. /*# sourceMappingURL=bootstrap-reboot.css.map */