gil.ink/scss/main.scss
2025-04-28 00:49:10 -05:00

30 lines
395 B
SCSS

@use 'theme';
body {
background-color: var(--theme-background);
color: var(--theme-text);
}
#skip-navigation {
position: fixed;
top: -100%;
right: 0;
padding: 10px;
&:focus {
top: 0;
}
}
.site {
display: flex;
flex-direction: column;
}
.contentarea {
display: flex;
flex-direction: row-reverse;
main {
width: 100%;
}
}