Document-level Elements
These are elements unique to each document.
html
scss
html {
@media screen and not (prefers-reduced-motion) {
scroll-behavior: smooth;
}
}
Document root.
Also selectable as :root
(which has a higher specificity).
body
scss
body {
@include coloring.set-colors("body");
@include coloring.use-colors;
}
Content root.
main
scss
main {
padding-block: svar(spacing-block-lg);
}
The document’s main content. There can be only one (visible).