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

28 lines
500 B
SCSS
Raw Normal View History

2020-09-27 21:09:15 +02:00
* {
2020-10-20 19:24:47 +02:00
scrollbar-color: $red $bg60;
scrollbar-width: thin;
2020-09-27 21:09:15 +02:00
&::selection {
2020-10-20 19:24:47 +02:00
background: $white;
2020-09-27 21:09:15 +02:00
}
}
body {
2020-10-20 19:24:47 +02:00
background: $bg40;
color: $white;
font-family: $font-family;
2020-09-27 21:09:15 +02:00
}
2020-10-15 11:34:17 +02:00
2020-09-27 21:09:15 +02:00
a {
2020-10-20 19:24:47 +02:00
color: $white-light;
2020-09-27 21:09:15 +02:00
transition: color 0.2s;
&:hover {
2020-10-20 19:24:47 +02:00
color: $red;
2020-09-27 21:09:15 +02:00
}
}
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;
}