diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-30 01:12:27 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2025-08-20 00:48:44 +1000 |
| commit | ec8d0a280640e9e1722bc55f2ab609061a5a39a6 (patch) | |
| tree | a7377777d5270fbfe0f80afece84dd1d48ac7532 /wwwroot/styles/global.css | |
| parent | 907ff70c379f2f44f5306e79f6eef93eae685747 (diff) | |
Made tag names in TagDefinitions clickable
Diffstat (limited to 'wwwroot/styles/global.css')
| -rw-r--r-- | wwwroot/styles/global.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/wwwroot/styles/global.css b/wwwroot/styles/global.css index de0a0ac..c0dbe3f 100644 --- a/wwwroot/styles/global.css +++ b/wwwroot/styles/global.css @@ -46,6 +46,19 @@ a:hover { filter: brightness(1.5); } +a::selection { + background: var(--col-accent-pri); + color: #fff; +} + +a.nondecorated { + color: #fff; +} + +a.nondecorated:hover { + color: #999; +} + button, input[type=submit] { color: white; background: var(--col-button-pri); |
