44 lines
603 B
SCSS
44 lines
603 B
SCSS
@import 'colors';
|
|
@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: var(--background-main);
|
|
color: var(--text-color-main);
|
|
}
|
|
|
|
a {
|
|
color: var(--link-text-color);
|
|
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;
|
|
}
|
|
}
|