summaryrefslogtreecommitdiff
path: root/wwwroot/styles/global.css
diff options
context:
space:
mode:
Diffstat (limited to 'wwwroot/styles/global.css')
-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);
}
}