produktiv-version

This commit is contained in:
2024-11-07 07:42:50 +01:00
parent 96fdb897ef
commit 27b458c5bb
5 changed files with 458 additions and 228 deletions

View File

@@ -17,6 +17,7 @@ header {
padding-top: 30px;
min-height: 70px;
border-bottom: #bbb 1px solid;
text-align: center;
}
header a {
@@ -62,11 +63,31 @@ header a:hover {
font-weight: bold;
}
/* Centered content styles */
.content-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}
/* Main content styles */
main {
padding: 20px 0;
}
/* Responsive styles */
@media screen and (max-width: 900px) {
.content-wrapper {
padding: 0 15px;
}
}
@media screen and (max-width: 600px) {
.content-wrapper {
padding: 0 10px;
}
}
/* Footer styles */
footer {
background: #333;
@@ -88,4 +109,4 @@ footer nav ul li {
footer nav ul li a {
color: #fff;
text-decoration: none;
}
}