vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/scss/import/_main.scss
2020-11-12 16:55:27 +01:00

27 lines
484 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;
}
}
@if $nojavascript == true {
.full.height > span { // makes »This website works better with JavaScript.« invisible, but there is still a gap if javascript is disabled (client-side).
display: none;
}
}