mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
131ad941d7
- Dark mode: make navbar links the same color as regular links so as to not hide the fact that they are links. - Make navbar reflow at narrow window sizes
15 lines
231 B
CSS
15 lines
231 B
CSS
@media (max-width: 770px) {
|
|
body {
|
|
max-width: 600px;
|
|
padding: 0 1rem;
|
|
}
|
|
header#banner nav {
|
|
display: block;
|
|
padding: 1rem 0 0.5rem 0;
|
|
margin: 0;
|
|
}
|
|
header#banner nav ul li {
|
|
display: block;
|
|
padding: 0.25rem;
|
|
}
|
|
}
|