only use arrows in footer lists

author
Marijn Besseling <njirambem@gmail.com> · 2025-10-19 18:19 UTC
commit
f9b74d4e2bed999cd643dcc703d25dd5b06d446b
parent
93f038ffa9
tree
browse at this commit

1 file changed +9 -5

Blog/wwwroot/app.css +9 -5

@@ -91,19 +91,19 @@ header > h1 {
91 91 display: inline-block;
92 92 }
93 93
94 -li:has(a:focus)::marker {
94 +footer li:has(a:focus)::marker {
95 95 content: "==> ";
96 96 }
97 97
98 -li:has(a:hover)::marker {
98 +footer li:has(a:hover)::marker {
99 99 content: " >";
100 100 }
101 101
102 -li:has(a:hover:focus)::marker {
102 +footer li:has(a:hover:focus)::marker {
103 103 content: "==>";
104 104 }
105 105
106 -li::marker {
106 +footer li::marker {
107 107 content: "> ";
108 108 }
109 109
@@ -293,4 +293,8 @@ small {
293 293 span.name {
294 294 color: var(--color);
295 295 filter: opacity(50%);
296 -}
No newline at end of file
296 +}
297 +
298 +li.dash {
299 + list-style-type: "- ";
300 +}