datenschutz inhalte eingefügt

This commit is contained in:
2024-11-05 23:06:10 +01:00
parent 4d1b695f61
commit a9cc2633e8
3 changed files with 155 additions and 175 deletions

91
styles.css Normal file
View File

@@ -0,0 +1,91 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #bbb 1px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
margin: 0;
list-style: none;
overflow: hidden;
}
header li {
float: left;
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
header .highlight, header .current a {
color: #e8491d;
font-weight: bold;
}
header a:hover {
color: #ffffff;
font-weight: bold;
}
/* Main content styles */
main {
padding: 20px 0;
}
/* Footer styles */
footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
footer nav ul {
padding: 0;
list-style: none;
}
footer nav ul li {
display: inline;
margin: 0 10px;
}
footer nav ul li a {
color: #fff;
text-decoration: none;
}