diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-05-04 15:26:17 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-05-04 15:26:17 +0200 |
commit | dc3201d641a03e051c6f0db07612eb6b0bb506c3 (patch) | |
tree | f4a57bcfbdf0be6a373df342d26b76bdbf43e2e9 /MatrixRoomUtils.Web/wwwroot/css/app.css | |
parent | Fix bugs in policy editor and state viewer (diff) | |
download | MatrixUtils-dc3201d641a03e051c6f0db07612eb6b0bb506c3.tar.xz |
Dark theme, fancier room list
Diffstat (limited to '')
-rw-r--r-- | MatrixRoomUtils.Web/wwwroot/css/app.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Web/wwwroot/css/app.css b/MatrixRoomUtils.Web/wwwroot/css/app.css index 8034dcc..acbbfce 100644 --- a/MatrixRoomUtils.Web/wwwroot/css/app.css +++ b/MatrixRoomUtils.Web/wwwroot/css/app.css @@ -2,6 +2,17 @@ html, body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + background-color: #222; + color: #aaa; +} + +#app > div > main > div { + background-color: #333; + border-bottom: none; +} + +.table, .table-striped>tbody>tr:nth-of-type(odd), .table-hover>tbody>tr:hover { + color: unset; } h1:focus { |