Invert nightmode scrollbar colors

The qtwebengine scrollbar is very bright in nightmode, let's change it
so it is a bit softer on the eyes.
This commit is contained in:
Jeena 2016-08-06 05:38:25 +02:00
parent b87e224781
commit cf94bfe488

View file

@ -29,11 +29,26 @@ body {
font-weight: lighter;
}
body.nightmode {
.nightmode {
background: #111;
color: #aaa;
}
.nightmode::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.nightmode::-webkit-scrollbar-track-piece {
background-color: #111;
}
.nightmode::-webkit-scrollbar-thumb:vertical {
height: 30px;
background-color: #444;
border-radius: 5px;
}
h1 {
font-weight: lighter;
font-size: 1.4em;