30 lines
357 B
CSS
30 lines
357 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-top: 16px;
|
|
padding-left: 168px;
|
|
}
|
|
a {
|
|
color: #00e;
|
|
}
|
|
|