This commit is contained in:
2026-06-13 00:09:28 +02:00
parent 9b230a08a9
commit 6f6be79647
20 changed files with 219 additions and 227 deletions

View File

@@ -0,0 +1,25 @@
.container {
margin: 0, auto;
width: 80%;
}
nav,footer {
background-color: #333;
color: #fff;
text-align: center;
}
nav {
display: flex;
flex-direction: column;
}
nav > a {
flex: 1;
text-align: center;
text-decoration: none;
color: #fff; }
@media only screen and (min-width: 768px) {
nav { flex-direction: row;
}
}