74 lines
1.2 KiB
CSS
74 lines
1.2 KiB
CSS
|
/* Kommentare werden durch Slash Stern eingeleitet und durch Stern Slash geschlossen
|
||
|
Rauten stellen im css keine Auskommentierung dar */
|
||
|
|
||
|
h1, h2, h3, h4 {
|
||
|
color: #7fb945;
|
||
|
}
|
||
|
|
||
|
/* Seiten-Ueberschrift */
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
/* Navigation */
|
||
|
#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;
|
||
|
}
|
||
|
|
||
|
/* Zitate */
|
||
|
blockquote {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
/* Bildbeschreibung */
|
||
|
caption {
|
||
|
font-size: small;
|
||
|
}
|
||
|
|
||
|
/* Lyx Hervorhebungen */
|
||
|
.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;
|
||
|
}
|