diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-06-22 00:18:29 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-25 02:43:50 +1000 |
| commit | d86adbefcdedeba65eadbf92f13df591274f62ed (patch) | |
| tree | 5a0c908b0f92b2896e9ce1329d49438dff05f73c /wwwroot/styles | |
| parent | a42b4ea8e9a255760bd5d2ba3cfae98650c08763 (diff) | |
Updated style rules for anchor tags in global.csswasm-server
Diffstat (limited to 'wwwroot/styles')
| -rw-r--r-- | wwwroot/styles/global.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/wwwroot/styles/global.css b/wwwroot/styles/global.css index 7ed4479..d9cfa37 100644 --- a/wwwroot/styles/global.css +++ b/wwwroot/styles/global.css @@ -48,11 +48,18 @@ body { a { color: var(--col-accent-pri); + cursor: pointer; text-decoration: none; } +a.disabled { + color: #aaa; + font-style: italic; + pointer-events: none; +} + @media (hover: hover) { - a:hover { + a:not(.disabled):hover { filter: brightness(1.5); } } |
