diff options
-rw-r--r-- | style.css | 8 |
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 | ||
94 | body>nav { | 94 | body>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 | ||