27 lines
575 B
SCSS
27 lines
575 B
SCSS
* {
|
|
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
|
|
scrollbar-width: thin;
|
|
&::selection {
|
|
background: rgb(245, 245, 255);
|
|
}
|
|
}
|
|
|
|
|
|
body {
|
|
background: rgb(40, 40, 60);
|
|
color: rgb(245, 245, 255);
|
|
@include font-family();
|
|
}
|
|
a {
|
|
color: rgb(255, 255, 255);
|
|
transition: color 0.2s;
|
|
&:hover {
|
|
color: rgb(255, 130, 130);
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|