diff options
author | thinkpadmaster <a.scerba02@gmail.com> | 2023-07-05 22:37:54 -0500 |
---|---|---|
committer | thinkpadmaster <a.scerba02@gmail.com> | 2023-07-05 22:37:54 -0500 |
commit | 49aefbadefa91e9d3faf260cb0c86b57c20647c3 (patch) | |
tree | b0ef491eace0d914ad81a3c7cc598614f29349c8 | |
parent | 738b44726b430f001298241df1c9991378fce7f7 (diff) |
Change hierarchy to allow figcaption links to inherit
-rw-r--r-- | data/static/style.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/data/static/style.css b/data/static/style.css index 881f0a7..e5be904 100644 --- a/data/static/style.css +++ b/data/static/style.css @@ -99,14 +99,6 @@ main { color: var(--accent-color); } -a { - color: inherit; -} - -figure > a { - text-decoration: none; -} - @keyframes fadeIn { 0% { opacity: 0%; @@ -172,6 +164,14 @@ figcaption { color: var(--subtext-color); } +figure > a { + text-decoration: none; +} + +a { + color: inherit; +} + .bottom { width: 100%; background-color: var(--dark-transparent); |