44 lines
471 B
SCSS
44 lines
471 B
SCSS
:root {
|
|
background: var(--background);
|
|
color: var(--text);
|
|
|
|
font-size: 100%;
|
|
font-family: var(--font-family);
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--text-600);
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--text-700);
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
figure {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0.5rem;
|
|
min-height: calc(100vh - 1rem);
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
main {
|
|
flex: 1;
|
|
}
|
|
}
|