diff options
author | Deniz Akşimşek <deniz@denizaksimsek.com> | 2022-11-18 05:38:37 +0300 |
---|---|---|
committer | Deniz Akşimşek <deniz@denizaksimsek.com> | 2022-11-18 05:38:37 +0300 |
commit | f86d5b3192aebc67f89cffcf10d756793dd31d10 (patch) | |
tree | 4c8f6205ed19d1deb6b1502596d404701c07d681 | |
parent | a4f680b077aaadef7a8e81c552218ce1f168115f (diff) | |
download | missing-f86d5b3192aebc67f89cffcf10d756793dd31d10.tar.gz missing-f86d5b3192aebc67f89cffcf10d756793dd31d10.zip |
<small> and <a> masquerades
-rw-r--r-- | src/main.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main.css b/src/main.css index b25fa30..5d7cb82 100644 --- a/src/main.css +++ b/src/main.css @@ -270,11 +270,14 @@ main { /* Text-level semantics */ -a { +a, .\<a\> { color: var(--link-fg, var(--accent)); font-family: var(--secondary-font); border-radius: var(--border-radius); outline-offset: 1px; + background: none; + border: none; + font-size: 1em; @nest .list-of-links & { text-decoration: none; @@ -326,6 +329,10 @@ small { } } +small, .\<small\> { + font-size: .8em; +} + s { color: var(--bad-fg); } |