about summary refs log tree commit diff stats
path: root/style.css
diff options
context:
space:
mode:
authorCase Duckworth2022-07-18 10:15:51 -0500
committerCase Duckworth2022-07-18 10:15:51 -0500
commit60390e59843a36aa51c67332c24d2666daa0ce9d (patch)
tree7e35658358aa019676f0ed128876eab7ffa1220a /style.css
parentStyle footer (diff)
downloadsfeed-60390e59843a36aa51c67332c24d2666daa0ce9d.tar.gz
sfeed-60390e59843a36aa51c67332c24d2666daa0ce9d.zip
Simplify border declarations
Diffstat (limited to 'style.css')
-rw-r--r--style.css8
1 files changed, 2 insertions, 6 deletions
diff --git a/style.css b/style.css index 369e3c3..a4599ab 100644 --- a/style.css +++ b/style.css
@@ -92,7 +92,7 @@ header .top {
92} 92}
93 93
94body>nav { 94body>nav {
95 border-bottom: 1px solid black; 95 border-bottom: 1px solid;
96 margin-top: 0; 96 margin-top: 0;
97 text-align: right; 97 text-align: right;
98} 98}
@@ -124,7 +124,7 @@ header a { display: inline; }
124 aside { 124 aside {
125 padding: 2ch; 125 padding: 2ch;
126 order: 1; 126 order: 1;
127 border-bottom: 1px solid black; 127 border-bottom: 1px solid;
128 } 128 }
129 aside ul { margin: 0; padding: 0; } 129 aside ul { margin: 0; padding: 0; }
130 #list { order: 2; } 130 #list { order: 2; }
@@ -155,7 +155,6 @@ header a { display: inline; }
155 a:hover { background: yellow; } 155 a:hover { background: yellow; }
156 a:active { background: cyan; } 156 a:active { background: cyan; }
157 .entry-extra a { color: blue; } 157 .entry-extra a { color: blue; }
158 body>nav { border-bottom: 1px solid black; }
159} 158}
160 159
161@media (prefers-color-scheme: dark) { 160@media (prefers-color-scheme: dark) {
@@ -168,16 +167,13 @@ header a { display: inline; }
168 a:hover { color: yellow; background: inherit; } 167 a:hover { color: yellow; background: inherit; }
169 a:active { color: cyan; background: inherit; } 168 a:active { color: cyan; background: inherit; }
170 .entry-extra a { color: cyan; } 169 .entry-extra a { color: cyan; }
171 body>nav { border-bottom: 1px solid white; }
172} 170}
173 171
174@media screen and (max-width: 720px) and (prefers-color-scheme: dark) { 172@media screen and (max-width: 720px) and (prefers-color-scheme: dark) {
175 aside { border-bottom: 1px solid white; }
176 aside li { background: black !important; } 173 aside li { background: black !important; }
177} 174}
178 175
179@media screen and (max-width: 720px) and (prefers-color-scheme: light) { 176@media screen and (max-width: 720px) and (prefers-color-scheme: light) {
180 aside { border-bottom: 1px solid black; }
181 aside li { background: white !important; } 177 aside li { background: white !important; }
182} 178}
183 179