mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
65 lines
1.1 KiB
SCSS
65 lines
1.1 KiB
SCSS
@import "../../lib/normalize/normalize";
|
|
|
|
html {
|
|
font-family: $global-font-family;
|
|
font-weight: $global-font-weight;
|
|
font-display: swap;
|
|
font-size: $global-font-size;
|
|
line-height: $global-line-height;
|
|
width: 100%;
|
|
scroll-behavior: smooth;
|
|
overflow: overlay;
|
|
}
|
|
|
|
@media screen and (prefers-reduced-motion: reduce) {
|
|
html {
|
|
scroll-behavior: auto;
|
|
}
|
|
}
|
|
|
|
::selection {
|
|
background-color: $selection-color;
|
|
|
|
[data-theme='dark'] & {
|
|
background-color: $selection-color-dark;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: $global-background-color;
|
|
color: $global-font-color;
|
|
@include overflow-wrap(break-word);
|
|
|
|
[data-theme='dark'] & {
|
|
color: $global-font-color-dark;
|
|
background-color: $global-background-color-dark;
|
|
}
|
|
}
|
|
|
|
iframe {
|
|
border: 0;
|
|
@include border-radius($global-border-radius);
|
|
}
|
|
|
|
[role='button'] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
summary {
|
|
cursor: pointer;
|
|
}
|
|
|
|
abbr[title] {
|
|
cursor: help;
|
|
text-decoration-skip-ink: none;
|
|
}
|
|
|
|
@include link(true, true);
|
|
|
|
@import '../_partials/scrollbar';
|
|
@import '../_partials/mask';
|
|
@import '../_partials/img';
|
|
@import '../_partials/icon';
|
|
@import '../_partials/details';
|
|
@import '../_partials/widgets';
|