29 lines
334 B
CSS
29 lines
334 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-size: 10pt;
|
||
|
font-family: Arial;
|
||
|
}
|
||
|
#nav {
|
||
|
position: fixed;
|
||
|
left: 16px;
|
||
|
top: 16px;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
#nav li {
|
||
|
display: linline;
|
||
|
list-style-type:none;
|
||
|
}
|
||
|
.title {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
#content {
|
||
|
width: 600px;
|
||
|
padding-left: 168px;
|
||
|
}
|
||
|
a {
|
||
|
color: #00e;
|
||
|
}
|
||
|
|