make the dark theme a bit better

This commit is contained in:
Mollomm1 2023-07-11 21:14:36 +00:00
parent 38e818737c
commit 03a7a58927
1 changed files with 389 additions and 367 deletions

View File

@ -364,5 +364,27 @@ body {
background-color: var(--gray-600); background-color: var(--gray-600);
} }
.post .commentdiv input,
input {
border: solid 1px var(--gray-700);
}
.post .commentdiv input:hover,
input:hover,
.post .commentdiv input:focus,
input:focus {
outline: none;
border: solid 1px #f1b739;
}
.post {
background-color: var(--gray-800);
border: solid 1px var(--gray-700);
}
.navbar {
border-color: var(--gray-700);
}
} }
} }