Add a dark theme to the dashboard

This commit is contained in:
Kerollmops
2020-07-13 23:51:41 +02:00
parent 3d144e62c4
commit aa92311d4e
4 changed files with 30 additions and 1 deletions

View File

@ -58,7 +58,7 @@ em {
padding-right: 10px;
box-sizing: border-box;
text-transform: uppercase;
color: rgba(0,0,0,.7);
opacity: 0.7;
}
.content {
@ -78,3 +78,22 @@ em {
.fade-in-out {
animation: fadeInOut ease 1s infinite;
}
@media (prefers-color-scheme:dark) {
.hero.is-light {
background-color: #242424;
color: inherit;
}
.hero.is-light .title {
color: inherit;
}
.document {
background-color: #242424;
}
.content {
color: #dbdbdb;
}
}