123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- *,
- *::before,
- *::after {
- box-sizing: border-box;
- }
- :root {
- @if $font-size-root != null {
- font-size: var(--#{$variable-prefix}root-font-size);
- }
- @if $enable-smooth-scroll {
- @media (prefers-reduced-motion: no-preference) {
- scroll-behavior: smooth;
- }
- }
- }
- body {
- margin: 0;
- font-family: var(--#{$variable-prefix}body-font-family);
- @include font-size(var(--#{$variable-prefix}body-font-size));
- font-weight: var(--#{$variable-prefix}body-font-weight);
- line-height: var(--#{$variable-prefix}body-line-height);
- color: var(--#{$variable-prefix}body-color);
- text-align: var(--#{$variable-prefix}body-text-align);
- background-color: var(--#{$variable-prefix}body-bg);
- -webkit-text-size-adjust: 100%;
- -webkit-tap-highlight-color: rgba($black, 0);
- }
- hr {
- margin: $hr-margin-y 0;
- color: $hr-color;
- background-color: currentColor;
- border: 0;
- opacity: $hr-opacity;
- }
- hr:not([size]) {
- height: $hr-height;
- }
- %heading {
- margin-top: 0;
- margin-bottom: $headings-margin-bottom;
- font-family: $headings-font-family;
- font-style: $headings-font-style;
- font-weight: $headings-font-weight;
- line-height: $headings-line-height;
- color: $headings-color;
- }
- h1 {
- @extend %heading;
- @include font-size($h1-font-size);
- }
- h2 {
- @extend %heading;
- @include font-size($h2-font-size);
- }
- h3 {
- @extend %heading;
- @include font-size($h3-font-size);
- }
- h4 {
- @extend %heading;
- @include font-size($h4-font-size);
- }
- h5 {
- @extend %heading;
- @include font-size($h5-font-size);
- }
- h6 {
- @extend %heading;
- @include font-size($h6-font-size);
- }
- p {
- margin-top: 0;
- margin-bottom: $paragraph-margin-bottom;
- }
- abbr[title],
- abbr[data-bs-original-title] {
- text-decoration: underline dotted;
- cursor: help;
- text-decoration-skip-ink: none;
- }
- address {
- margin-bottom: 1rem;
- font-style: normal;
- line-height: inherit;
- }
- 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 {
- font-weight: $dt-font-weight;
- }
- dd {
- margin-bottom: .5rem;
- margin-left: 0;
- }
- blockquote {
- margin: 0 0 1rem;
- }
- b,
- strong {
- font-weight: $font-weight-bolder;
- }
- small {
- @include font-size($small-font-size);
- }
- mark {
- padding: $mark-padding;
- background-color: $mark-bg;
- }
- sub,
- sup {
- position: relative;
- @include font-size($sub-sup-font-size);
- line-height: 0;
- vertical-align: baseline;
- }
- sub { bottom: -.25em; }
- sup { top: -.5em; }
- a {
- color: $link-color;
- text-decoration: $link-decoration;
- &:hover {
- color: $link-hover-color;
- text-decoration: $link-hover-decoration;
- }
- }
- a:not([href]):not([class]) {
- &,
- &:hover {
- color: inherit;
- text-decoration: none;
- }
- }
- pre,
- code,
- kbd,
- samp {
- font-family: $font-family-code;
- @include font-size(1em);
- direction: ltr #{"/* rtl:ignore */"};
- unicode-bidi: bidi-override;
- }
- pre {
- display: block;
- margin-top: 0;
- margin-bottom: 1rem;
- overflow: auto;
- @include font-size($code-font-size);
- color: $pre-color;
-
- code {
- @include font-size(inherit);
- color: inherit;
- word-break: normal;
- }
- }
- code {
- @include font-size($code-font-size);
- color: $code-color;
- word-wrap: break-word;
-
- a > & {
- color: inherit;
- }
- }
- kbd {
- padding: $kbd-padding-y $kbd-padding-x;
- @include font-size($kbd-font-size);
- color: $kbd-color;
- background-color: $kbd-bg;
- @include border-radius($border-radius-sm);
- kbd {
- padding: 0;
- @include font-size(1em);
- font-weight: $nested-kbd-font-weight;
- }
- }
- figure {
- margin: 0 0 1rem;
- }
- img,
- svg {
- vertical-align: middle;
- }
- table {
- caption-side: bottom;
- border-collapse: collapse;
- }
- caption {
- padding-top: $table-cell-padding-y;
- padding-bottom: $table-cell-padding-y;
- color: $table-caption-color;
- text-align: left;
- }
- th {
- font-weight: $table-th-font-weight;
- text-align: inherit;
- text-align: -webkit-match-parent;
- }
- thead,
- tbody,
- tfoot,
- tr,
- td,
- th {
- border-color: inherit;
- border-style: solid;
- border-width: 0;
- }
- label {
- display: inline-block;
- }
- button {
-
- border-radius: 0;
- }
- button:focus:not(:focus-visible) {
- outline: 0;
- }
- input,
- button,
- select,
- optgroup,
- textarea {
- margin: 0;
- font-family: inherit;
- @include font-size(inherit);
- line-height: inherit;
- }
- button,
- select {
- text-transform: none;
- }
- [role="button"] {
- cursor: pointer;
- }
- select {
-
-
- word-wrap: normal;
-
- &:disabled {
- opacity: 1;
- }
- }
- [list]::-webkit-calendar-picker-indicator {
- display: none;
- }
- button,
- [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- @if $enable-button-pointers {
- &:not(:disabled) {
- cursor: pointer;
- }
- }
- }
- ::-moz-focus-inner {
- padding: 0;
- border-style: none;
- }
- textarea {
- resize: vertical;
- }
- fieldset {
- min-width: 0;
- padding: 0;
- margin: 0;
- border: 0;
- }
- legend {
- float: left;
- width: 100%;
- padding: 0;
- margin-bottom: $legend-margin-bottom;
- @include font-size($legend-font-size);
- font-weight: $legend-font-weight;
- line-height: inherit;
- + * {
- clear: left;
- }
- }
- ::-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;
- }
- [type="search"] {
- outline-offset: -2px;
- -webkit-appearance: textfield;
- }
- ::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- ::-webkit-color-swatch-wrapper {
- padding: 0;
- }
- ::file-selector-button {
- font: inherit;
- }
- ::-webkit-file-upload-button {
- font: inherit;
- -webkit-appearance: button;
- }
- output {
- display: inline-block;
- }
- iframe {
- border: 0;
- }
- summary {
- display: list-item;
- cursor: pointer;
- }
- progress {
- vertical-align: baseline;
- }
- [hidden] {
- display: none !important;
- }
|