39 lines
582 B
CSS
39 lines
582 B
CSS
#title {
|
|
margin-top: 12px;
|
|
background-color: #fff;
|
|
color: #000;
|
|
|
|
}
|
|
#menu {
|
|
border-top: solid 6px #000;
|
|
background-color: #fff
|
|
color: #fff;
|
|
height: 400px;
|
|
}
|
|
|
|
#menu a {
|
|
background-color: #f00;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
#menu a:hover {
|
|
background-color: #f00;
|
|
color: #ddd;
|
|
text-decoration:underline;
|
|
display: block;
|
|
}
|
|
|
|
#content {
|
|
background-color: #fff;
|
|
border-top: solid 6px #f00;
|
|
|
|
}
|
|
|
|
#footer {
|
|
margin_top: 20px;
|
|
text-align: center;
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|