diff options
| author | Andrew Lee <[email protected]> | 2025-12-12 23:06:44 -0500 |
|---|---|---|
| committer | Andrew Lee <[email protected]> | 2025-12-12 23:06:44 -0500 |
| commit | 9230af4a07f43361408344439e07c2fa42bfe66a (patch) | |
| tree | 0da10f76ca028340cc29863b9de3bc0f1ad7988f /src/styles | |
| parent | 64807b47ca636700b91095a12a23deec3692154f (diff) | |
| download | shiftos-archive-website-9230af4a07f43361408344439e07c2fa42bfe66a.tar.gz shiftos-archive-website-9230af4a07f43361408344439e07c2fa42bfe66a.tar.bz2 shiftos-archive-website-9230af4a07f43361408344439e07c2fa42bfe66a.zip | |
more css fixes; the entire site now uses the window; hover effect for close
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/window.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/styles/window.css b/src/styles/window.css index 0a3715a..ad7a855 100644 --- a/src/styles/window.css +++ b/src/styles/window.css @@ -2,6 +2,7 @@ --titlebar-colour: #808080; --titlebar-text-colour: #ffffff; --titlebar-control-colour: #000000; + --titlebar-control-link: #c4c4c4; --dark-window: #000000; --light-window: #ffffff; @@ -82,6 +83,10 @@ margin-left: 0.2em; } +.titlebar-box-link:hover { + background-color: var(--titlebar-control-link); +} + .window { font-family: Arial, Helvetica, sans-serif; margin: 1em 2%; @@ -91,9 +96,9 @@ } .button { - padding: 15px 40px; + padding: 10px 40px; border: solid; - border-width: 2px; + border-width: 1px; } .nav { |
