40 lines
600 B
CSS
40 lines
600 B
CSS
|
body{
|
||
|
font-size: 16px;
|
||
|
color:#555;
|
||
|
}
|
||
|
#logo{
|
||
|
margin-bottom:0px;
|
||
|
}
|
||
|
#header{
|
||
|
background:#eee;
|
||
|
}
|
||
|
#footer
|
||
|
{ margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
font-family: 'trebuchet ms', sans-serif;
|
||
|
font-size: 90%;
|
||
|
padding: 20px 0 5px 0;
|
||
|
text-align: center;
|
||
|
background: aliceblue;
|
||
|
color: black;
|
||
|
text-transform: uppercase;
|
||
|
letter-spacing: 0.1em;
|
||
|
margin-top:50px;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#footer p
|
||
|
{ padding: 0;
|
||
|
color:black;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
#footer a, #footer a:hover
|
||
|
{ color: black;
|
||
|
text-decoration: none;}
|
||
|
|
||
|
#footer a:hover
|
||
|
{ text-decoration: underline;}
|
||
|
|