30 lines
395 B
SCSS
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%;
|
|
}
|
|
} |