30 lines
448 B
CSS
30 lines
448 B
CSS
body{
|
|
margin: 0;
|
|
font-family: helvetica, Arial, sans-serif;
|
|
font-size: 1.2rem;
|
|
}
|
|
.wrapper{
|
|
max-width: 960px;
|
|
margin:0 auto;
|
|
}
|
|
header, footer{
|
|
height: 160px;
|
|
background: silver;
|
|
clear: both; /* stopt das floating */
|
|
}
|
|
nav{
|
|
height: 30px;
|
|
background: tomato;
|
|
}
|
|
#hauptbereich, #seitenbereich{
|
|
min-height: 500px;
|
|
background: #acacac;
|
|
}
|
|
#hauptbereich{
|
|
width: 60%;
|
|
float: left;
|
|
}
|
|
#seitenbereich{
|
|
width: 30%;
|
|
float: right;
|
|
} |