diff options
Diffstat (limited to 'site/style.css')
| -rw-r--r-- | site/style.css | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/site/style.css b/site/style.css index 97d5ae2..508ad61 100644 --- a/site/style.css +++ b/site/style.css @@ -19,14 +19,22 @@ body { flex-direction: row; } -div.vertex { +.vertex { padding: 1em; background-color: var(--hi-color); border-radius: 50%; } -div.vertex.off { - background-color: var(--fg-color); +.vertex.off { + background-color: yellow; +} + +.vertex:hover { + filter: brightness(150%); +} + +.inactive { + display: none !important; } section#optionsScreen { @@ -40,10 +48,6 @@ section.screen { animation: fadein 1s linear; } -section.screen.inactive { - display: none; -} - button { background-color: var(--hi-color); color: var(--fg-color); |
