1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 04:12:09 +00:00

CSS: navbar tweaks (responsiveness + color)

- 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
This commit is contained in:
rohan kumar 2020-11-25 22:19:52 -08:00
parent 25ffbd9bbb
commit 131ad941d7
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479
2 changed files with 10 additions and 5 deletions

View file

@ -7,11 +7,7 @@
background: black;
}
header#banner a {
color: white;
}
main#content a, footer a {
a {
color: #00b1ed;
}

View file

@ -3,4 +3,13 @@
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;
}
}