diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-03-26 14:04:10 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-03-26 14:04:10 +0000 |
commit | 2e7c0c4ef0282c634cf96b47a692426a8f0c6262 (patch) | |
tree | 69b673a5c24f8b55b926064e44c68ddee57e4da7 /static/css/root.css | |
parent | c2dcbe0f25a3e8bd60a4ccf377bbdd47f4794871 (diff) | |
download | tour-2e7c0c4ef0282c634cf96b47a692426a8f0c6262.tar.gz tour-2e7c0c4ef0282c634cf96b47a692426a8f0c6262.zip |
Remove off-brand transitions and mobile UI breaking link
Diffstat (limited to 'static/css/root.css')
-rw-r--r-- | static/css/root.css | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/static/css/root.css b/static/css/root.css index c7ceb62..948462c 100644 --- a/static/css/root.css +++ b/static/css/root.css @@ -52,7 +52,6 @@ a code { color: inherit; } - /* * Nav bar & Nav links */ @@ -165,21 +164,14 @@ html.theme-light .theme-button.-light { color: var(--color-text-accent); text-decoration: underline; text-decoration-color: var(--color-accent-muted); - transition: background 150ms linear 0s, color 150ms ease-out 0s, text-decoration-color 150ms ease-out 0s; -} - -.link:hover { - color: var(--color-link); - background: var(--color-accent-muted); - text-decoration-color: var(--color-accent); -} - -.navbar .link:hover { - background: var(--color-accent-light); - text-decoration-color: var(--color-accent-hot); + transition: + background 150ms linear 0s, + color 150ms ease-out 0s, + text-decoration-color 150ms ease-out 0s; } .link.padded, .navbar .link { padding: calc(var(--gap-quarter) * 0.5) var(--gap-quarter) 0; -}
\ No newline at end of file +} + |