42 lines
644 B
CSS
42 lines
644 B
CSS
body{
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
color: #4c4c4c;
|
|
margin: 0;
|
|
}
|
|
#wrapper{
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
|
|
}
|
|
header{
|
|
height: 400px;
|
|
background-image: url("../img/background1.jpg");
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
}
|
|
h1, h2{
|
|
font-family: "century gothic", serif ;
|
|
font-size-adjust: 2rem;
|
|
color: #cc3333;
|
|
font-weight: 900;
|
|
}
|
|
h2{
|
|
font-size: 1.6rem;
|
|
}
|
|
nav ul{
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
text-align: right;
|
|
}
|
|
nav li{
|
|
display: inline;
|
|
margin-left: 20px;
|
|
}
|
|
nav a{
|
|
color: #333;
|
|
text-decoration: none;
|
|
}
|
|
nav a.aktiv{
|
|
border-bottom: 2px solid #333;
|
|
} |