add navbar to footer

This commit is contained in:
Nico 2025-08-04 23:42:46 +10:00
parent d0560cb6f4
commit bb4ea44b3e
Signed by: nico
SSH key fingerprint: SHA256:XuacYOrGqRxC3jVFjfLROn1CSvLz85Dec6N7O9Gwu/0
2 changed files with 49 additions and 28 deletions

View file

@ -172,32 +172,6 @@ footer p,hr,div {
}
}
@media (max-width: 1000px) {
header {
margin: none;
width: 100%;
height: auto;
border-radius: 0px;
margin-top: 0px;
}
header h1 {
top: 0.3em;
}
footer {
flex-direction: column;
}
footer marquee {
width: auto !important;
}
.blog-content {
width: 90vw !important;
}
}
/*
* blog
*/
@ -211,3 +185,38 @@ footer p,hr,div {
font-family: Serif;
font-size: 3rem;
}
/*
* responsive webpage
*/
.horizontal-flex {
display: flex;
flex-direction: row;
}
@media (max-width: 1000px) {
header {
margin: none;
width: 100%;
height: auto;
border-radius: 0px;
margin-top: 0px;
}
header h1 {
top: 0.3em;
}
.horizontal-flex {
flex-direction: column;
}
footer marquee {
width: auto !important;
}
.blog-content {
width: 90vw !important;
}
}