60 lines
887 B
CSS
60 lines
887 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%;
|
|
}
|
|
#news{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
h1, h2{
|
|
font-family: "century gothic", serif ;
|
|
font-size-adjust: 2rem;
|
|
color: #cc3333;
|
|
font-weight: 900;
|
|
}
|
|
h2{
|
|
font-size: 1.6rem;
|
|
margin-top: 0;
|
|
}
|
|
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;
|
|
}
|
|
section{
|
|
clear: both;
|
|
overflow: auto;
|
|
margin-bottom: 30px;
|
|
}
|
|
section img{
|
|
max-width: 500px;
|
|
float: left;
|
|
margin-right: 30px;
|
|
}
|
|
section li{
|
|
list
|
|
} |