52 lines
665 B
SCSS
52 lines
665 B
SCSS
@import 'breakpoint';
|
|
@import 'focus';
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
background-color: rgb(231, 231, 231);
|
|
}
|
|
|
|
a {
|
|
color: #00aaff;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
dl {
|
|
margin-top: 0.5rem;
|
|
|
|
dt {
|
|
font-weight: 600;
|
|
margin-top: 0.5rem;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
color-scheme: dark;
|
|
}
|
|
body {
|
|
color: white;
|
|
background: black;
|
|
}
|
|
}
|