CSS Dark Mode Improvements

This commit is contained in:
Luke Prior 2021-10-09 19:07:15 +11:00 committed by GitHub
parent 4036214ecd
commit 04b95effba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -72,7 +72,6 @@ td#sfreq {
display: none;
flex: 1;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
flex-direction: column;
overflow: auto;
@ -344,7 +343,7 @@ p{
h2{
color: white;
}
table, th, td, .save, .topnav a.active {
table, th, td, .save, a.active {
color: white;
border: 1px solid grey;
border-collapse: collapse;
@ -354,4 +353,13 @@ p{
color: white;
background-color: #333;
}
}
a:link, a:visited {
color: grey !important;
}
.topnav {
background-color: grey;
}
.topnav a:visited {
color: white !important;
}
}