bootstrap/dist/css/bootstrap-reboot.css

427 lines
5.7 KiB
CSS
Raw Normal View History

2017-10-18 16:29:05 +00:00
/*!
2021-08-04 15:41:51 +00:00
* Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
2020-06-16 18:50:01 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2017-10-18 16:29:05 +00:00
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
2017-08-11 06:35:04 +00:00
*,
*::before,
*::after {
2017-06-30 20:15:09 +00:00
box-sizing: border-box;
2017-08-11 06:35:04 +00:00
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
2017-01-22 01:50:45 +00:00
margin: 0;
2021-08-04 15:41:51 +00:00
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
2019-07-12 21:56:26 +00:00
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
2017-01-22 01:50:45 +00:00
hr {
2019-07-12 21:56:26 +00:00
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
2017-01-22 01:50:45 +00:00
}
2020-11-11 17:07:37 +00:00
h6, h5, h4, h3, h2, h1 {
margin-top: 0;
2017-10-15 22:51:44 +00:00
margin-bottom: 0.5rem;
2019-07-12 21:56:26 +00:00
font-weight: 500;
line-height: 1.2;
}
h1 {
2020-03-28 10:29:08 +00:00
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
font-size: 2.5rem;
}
2019-07-12 21:56:26 +00:00
}
h2 {
2020-03-28 10:29:08 +00:00
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
font-size: 2rem;
}
2019-07-12 21:56:26 +00:00
}
h3 {
2020-03-28 10:29:08 +00:00
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
font-size: 1.75rem;
}
2019-07-12 21:56:26 +00:00
}
h4 {
2020-03-28 10:29:08 +00:00
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
font-size: 1.5rem;
}
2019-07-12 21:56:26 +00:00
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
2020-11-23 13:17:16 +00:00
abbr[data-bs-original-title] {
2017-07-16 20:11:21 +00:00
-webkit-text-decoration: underline dotted;
2017-10-22 19:26:15 +00:00
text-decoration: underline dotted;
cursor: help;
-webkit-text-decoration-skip-ink: none;
2018-11-24 16:22:59 +00:00
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
2019-07-12 21:56:26 +00:00
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
2017-10-15 22:51:44 +00:00
font-weight: 700;
}
dd {
2020-11-11 17:07:37 +00:00
margin-bottom: 0.5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
2017-01-22 01:50:45 +00:00
b,
strong {
font-weight: bolder;
}
small {
2019-10-08 06:39:10 +00:00
font-size: 0.875em;
2017-01-22 01:50:45 +00:00
}
2020-03-28 10:29:08 +00:00
mark {
padding: 0.2em;
background-color: #fcf8e3;
}
2017-01-22 01:50:45 +00:00
sub,
sup {
position: relative;
2019-10-08 06:39:10 +00:00
font-size: 0.75em;
2017-01-22 01:50:45 +00:00
line-height: 0;
vertical-align: baseline;
}
sub {
2020-11-11 17:07:37 +00:00
bottom: -0.25em;
2017-01-22 01:50:45 +00:00
}
sup {
2020-11-11 17:07:37 +00:00
top: -0.5em;
2017-01-22 01:50:45 +00:00
}
a {
2019-10-08 06:39:10 +00:00
color: #0d6efd;
2020-03-28 10:29:08 +00:00
text-decoration: underline;
}
2017-01-21 21:25:29 +00:00
a:hover {
color: #0a58ca;
}
2020-06-13 22:40:28 +00:00
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
2017-01-22 01:50:45 +00:00
pre,
code,
kbd,
samp {
2020-06-13 22:40:28 +00:00
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
2017-01-22 01:50:45 +00:00
font-size: 1em;
2020-12-03 13:08:31 +00:00
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
2017-01-22 01:50:45 +00:00
}
pre {
2019-08-27 13:03:21 +00:00
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
2019-10-08 06:39:10 +00:00
font-size: 0.875em;
2019-08-27 13:03:21 +00:00
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
2019-10-08 06:39:10 +00:00
font-size: 0.875em;
color: #d63384;
2019-08-27 13:03:21 +00:00
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
2019-10-08 06:39:10 +00:00
font-size: 0.875em;
2019-08-27 13:03:21 +00:00
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
2019-10-08 06:39:10 +00:00
font-size: 1em;
2019-08-27 13:03:21 +00:00
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
2020-03-28 10:29:08 +00:00
img,
2018-07-24 00:51:14 +00:00
svg {
2018-06-24 20:13:42 +00:00
vertical-align: middle;
}
table {
2020-03-28 10:29:08 +00:00
caption-side: bottom;
border-collapse: collapse;
}
caption {
2019-07-12 21:56:26 +00:00
padding-top: 0.5rem;
padding-bottom: 0.5rem;
2017-12-31 03:41:36 +00:00
color: #6c757d;
text-align: left;
}
th {
2017-08-11 06:35:04 +00:00
text-align: inherit;
2020-03-28 10:29:08 +00:00
text-align: -webkit-match-parent;
}
2020-05-13 18:53:43 +00:00
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
2017-09-30 21:28:03 +00:00
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
2017-01-22 01:50:45 +00:00
optgroup,
textarea {
2017-01-22 01:50:45 +00:00
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
2017-01-22 01:50:45 +00:00
button,
select {
text-transform: none;
}
2020-11-11 17:07:37 +00:00
[role=button] {
2020-06-16 18:50:01 +00:00
cursor: pointer;
}
2019-01-04 16:29:45 +00:00
select {
word-wrap: normal;
}
2021-03-23 16:26:54 +00:00
select:disabled {
opacity: 1;
}
2019-01-04 16:29:45 +00:00
2019-08-27 13:03:21 +00:00
[list]::-webkit-calendar-picker-indicator {
display: none;
}
2017-01-22 01:50:45 +00:00
button,
2020-11-11 17:07:37 +00:00
[type=button],
[type=reset],
[type=submit] {
2017-01-22 01:50:45 +00:00
-webkit-appearance: button;
}
2019-01-04 16:29:45 +00:00
button:not(:disabled),
2020-11-11 17:07:37 +00:00
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
2019-01-04 16:29:45 +00:00
cursor: pointer;
}
2019-08-27 13:03:21 +00:00
::-moz-focus-inner {
2017-01-22 01:50:45 +00:00
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
2019-08-27 13:03:21 +00:00
float: left;
width: 100%;
padding: 0;
2019-08-27 13:03:21 +00:00
margin-bottom: 0.5rem;
2020-03-28 10:29:08 +00:00
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
2017-01-22 01:50:45 +00:00
}
2020-03-28 10:29:08 +00:00
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
2019-07-12 21:56:26 +00:00
}
2020-03-28 10:29:08 +00:00
legend + * {
clear: left;
2017-01-22 01:50:45 +00:00
}
2020-03-28 10:29:08 +00:00
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
2020-11-11 17:07:37 +00:00
[type=search] {
2017-01-22 01:50:45 +00:00
outline-offset: -2px;
2019-08-27 13:03:21 +00:00
-webkit-appearance: textfield;
2017-01-22 01:50:45 +00:00
}
2020-12-03 13:08:31 +00:00
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
2019-08-27 13:03:21 +00:00
::-webkit-search-decoration {
-webkit-appearance: none;
}
2019-08-27 13:03:21 +00:00
::-webkit-color-swatch-wrapper {
padding: 0;
}
2020-11-11 17:07:37 +00:00
::file-selector-button {
font: inherit;
}
2017-01-22 01:50:45 +00:00
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
2020-05-13 18:53:43 +00:00
iframe {
border: 0;
}
2017-01-22 01:50:45 +00:00
summary {
display: list-item;
2017-12-28 05:08:51 +00:00
cursor: pointer;
2017-01-22 01:50:45 +00:00
}
2020-03-28 10:29:08 +00:00
progress {
vertical-align: baseline;
2019-08-27 13:03:21 +00:00
}
[hidden] {
display: none !important;
}
2020-11-11 17:07:37 +00:00
/*# sourceMappingURL=bootstrap-reboot.css.map */