Merge pull request 'make the dark theme look a bit better' (#3) from Mollomm1/burgercat:main into main

Reviewed-on: https://codeberg.org/burger-software/burgercat/pulls/3
This commit is contained in:
maaa 2023-07-11 21:19:31 +00:00
commit 1f655cf423
1 changed files with 389 additions and 367 deletions

View File

@ -364,5 +364,27 @@ body {
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);
}
}
}