hns.ws/assets/style/main.css

55 lines
565 B
CSS
Raw Permalink Normal View History

2024-10-18 20:15:07 +00:00
body {
background: var(--b-color);
margin: 0;
}
html {
scroll-behavior: smooth;
color-scheme: dark;
}
main {
min-height: calc(100vh - 7.9375rem);
margin: 4.1875rem auto 0 auto;
}
*,
*:after,
*:before {
box-sizing: border-box;
&:focus {
outline: none;
}
}
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
label {
color: var(--f-color);
font-family: var(--p-font);
font-weight: 400;
}
a {
text-decoration: none;
text-underline-offset: .05rem;
}
.hns {
display: none;
}
.nohns {
display: block;
}
::selection {
background: var(--h-color);
}