whois.tinysites.com/assets/style/main.css

56 lines
565 B
CSS

body {
background: var(--b-color);
margin: 0;
}
html {
scroll-behavior: smooth;
color-scheme: dark;
}
main {
min-height: calc(100vh - 32.75rem);
margin: 0 auto;
}
.center {
max-width: 36rem;
margin: 0 auto;
}
*,
*:after,
*:before {
box-sizing: border-box;
&:focus {
outline: none;
}
}
a,
p,
b,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
label,
summary {
color: var(--f-color);
font-family: var(--p-font);
font-weight: 400;
}
a {
text-decoration: none;
text-underline-offset: .05rem;
}
::selection {
background: var(--h-color);
}