diff options
-rw-r--r-- | web/style/nodecard.css | 12 | ||||
-rw-r--r-- | web/style/themes.css | 10 |
2 files changed, 15 insertions, 7 deletions
diff --git a/web/style/nodecard.css b/web/style/nodecard.css index ab25dd3..5a48f8f 100644 --- a/web/style/nodecard.css +++ b/web/style/nodecard.css @@ -30,13 +30,21 @@ object-position: center; width: 100%; } -.card .title { +.card .title, .card .subtitle { text-align: center; margin-top: 0.5em; text-align: center; text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} +.card .subtitle { + margin-top: 0.25em; +} +.card .subtitle a { + color: var(--font-dark); } -.card .title a { +.card .title a, .card .subtitle a { text-decoration-line: none; } .card .title a:hover { diff --git a/web/style/themes.css b/web/style/themes.css index f7c4229..10124b4 100644 --- a/web/style/themes.css +++ b/web/style/themes.css @@ -29,8 +29,8 @@ body.theme-Dark { --font-highlight: white; } body.theme-Light { - --accent-light: rgb(255, 163, 87); - --accent-dark: rgb(199, 90, 0); + --accent-light: #e46600; + --accent-dark: #ff9036; --c-error: rgb(255, 117, 117); --c-warn: rgb(252, 255, 78); --c-success: rgb(117, 255, 117); @@ -44,9 +44,9 @@ body.theme-Light { --background-very-light: #b9b9b9; --background-disable: rgb(128, 128, 128); --background-prop: #e9e9e9b2; - --font: rgb(43, 43, 43); - --font-dark: rgb(0, 0, 0); - --font-highlight: rgb(0, 0, 0); + --font: #0f0f0f; + --font-dark: #606060; + --font-highlight: black; } body.theme-Purple { --accent-light: rgb(191, 87, 255); |