diff options
Diffstat (limited to 'web/static/style.css')
-rw-r--r-- | web/static/style.css | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/web/static/style.css b/web/static/style.css index 64ae4df..47ae365 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -139,6 +139,9 @@ body { #titlebar #key-exit { display: none; + + color: #ccc; + background-color: #282828; } #titlebar #key-exit.visible { @@ -146,7 +149,8 @@ body { } #titlebar #key-exit.active { - background-color: #680018; + color: #eee; + background-color: #583a90; } @media (hover: hover) and (pointer: fine) { @@ -155,8 +159,14 @@ body { background-color: #6e49b4; } + #titlebar #key-exit:hover { + color: #ddd; + background-color: #323232; + } + #titlebar #key-exit.active:hover { - background-color: #82001e; + color: #fff; + background-color: #6e49b4; } } @@ -165,8 +175,14 @@ body { background-color: #7b51ca; } +#titlebar #key-exit:active { + color: #eee; + background-color: #383838; +} + #titlebar #key-exit.active:active { - background-color: #920022; + color: #fff; + background-color: #7b51ca; } #titlebar .opt-input.first { |