summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-06-22 00:18:29 +1000
committerJake Mannens <jake@asger.xyz>2026-06-25 02:43:50 +1000
commitd86adbefcdedeba65eadbf92f13df591274f62ed (patch)
tree5a0c908b0f92b2896e9ce1329d49438dff05f73c
parenta42b4ea8e9a255760bd5d2ba3cfae98650c08763 (diff)
Updated style rules for anchor tags in global.csswasm-server
-rw-r--r--wwwroot/styles/global.css9
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);
}
}