27 lines
500 B
SCSS
27 lines
500 B
SCSS
* {
|
|
scrollbar-color: $red $bg60;
|
|
scrollbar-width: thin;
|
|
&::selection {
|
|
background: $white;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: $bg40;
|
|
color: $white;
|
|
font-family: $font-family;
|
|
}
|
|
|
|
a {
|
|
color: $white-light;
|
|
transition: color 0.2s;
|
|
&:hover {
|
|
color: $red;
|
|
}
|
|
}
|
|
|
|
body > .full.height::first-line, // makes »This website works better with JavaScript.« invisible, but there is still a gap if javascript is disabled (client-side).
|
|
.full.height > span {
|
|
font-size: 0;
|
|
line-height: 0px;
|
|
}
|