34 lines
381 B
CSS
34 lines
381 B
CSS
body {
|
|
background-color: #cdfcab;
|
|
}
|
|
|
|
#overall-wrapper {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header menu {
|
|
display: inline-block;
|
|
}
|
|
header menu li {
|
|
display: inline-block;
|
|
padding: 2px;
|
|
margin: 0 2px;
|
|
}
|
|
|
|
nav {
|
|
float: left;
|
|
padding: 0 50px 0 0;
|
|
}
|
|
|
|
main {
|
|
padding: 0 50px;
|
|
}
|
|
|
|
footer {
|
|
clear: both;
|
|
}
|
|
|
|
footer p {
|
|
text-align: center;
|
|
}
|