didnt know media queries worked like that

This commit is contained in:
Emma Tebibyte 2022-09-22 21:46:57 -04:00
parent b7be62b867
commit ab063da1e7
Signed by: emma
GPG Key ID: 6D661C738815E7DD
1 changed files with 13 additions and 4 deletions

View File

@ -70,10 +70,10 @@ figure {
}
footer {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: 1em;
justify-content: space-around;
justify-content: space-between;
padding: 0.5em 1em;
}
@ -206,8 +206,17 @@ aside, .errorcode, figure, footer, menu {
text-decoration: none;
}
.copyleft, .webring {
margin: auto;
@media (max-width: 30em) {
footer {
flex-wrap: wrap;
justify-content: center;
}
.copyleft, .webring {
flex-basis: 100%;
flex-grow: 1;
text-align: center;
}
}
#home nav .home > a {