bootstrap-reboot.css 7.4 KB

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