65 lines
953 B
CSS
65 lines
953 B
CSS
|
h1, h2, h3, h4 {
|
||
|
|
||
|
color: #7fb945;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
border-bottom: 1px dashed #999999;
|
||
|
border-top: 1px dashed #999999;
|
||
|
border-right: 1px dashed #999999;
|
||
|
padding: 3px 3px 3px 3px;
|
||
|
|
||
|
}
|
||
|
|
||
|
a:link, a:visited {
|
||
|
color: #7fb945;
|
||
|
}
|
||
|
|
||
|
#nav {
|
||
|
float: left;
|
||
|
width: 15em;
|
||
|
margin: 0;
|
||
|
padding: 0 1em 0 0;
|
||
|
border-top: 1px dashed silver;
|
||
|
border-right: 1px dashed silver;
|
||
|
padding-left:3px;
|
||
|
margin-bottom: 40px;
|
||
|
font-size: small;
|
||
|
}
|
||
|
|
||
|
#main {
|
||
|
margin-left: 14em;
|
||
|
padding: 0 1em;
|
||
|
text-align: justify;
|
||
|
}
|
||
|
|
||
|
blockquote {
|
||
|
font-style:italic;
|
||
|
}
|
||
|
|
||
|
.textit {
|
||
|
font-style:italic;
|
||
|
font-variant:small-caps;
|
||
|
}
|
||
|
|
||
|
#online {
|
||
|
text-align: center;
|
||
|
width: 80%;
|
||
|
border-top: 1px dashed silver;
|
||
|
margin: 30px auto 10px auto;
|
||
|
padding: 5px;
|
||
|
clear: left;
|
||
|
color: #777777;
|
||
|
font-style:italic;
|
||
|
font-size: small;
|
||
|
}
|
||
|
|
||
|
#offline {
|
||
|
text-align: center;
|
||
|
width: 80%;
|
||
|
border-top: 1px dashed silver;
|
||
|
margin: 30px auto 10px auto;
|
||
|
padding: 5px;
|
||
|
font-size: 13px;
|
||
|
}
|