108 lines
1.6 KiB
CSS
108 lines
1.6 KiB
CSS
/** padding,margin Angaben: oben rechts unten links **/
|
|
h1, h2, h3, h4 {
|
|
color: #7fb945;
|
|
}
|
|
|
|
/* Seiten-Ueberschrift */
|
|
h1 {
|
|
border-bottom: 1px solid silver;
|
|
border-top: 1px solid silver;
|
|
border-right: 1px solid silver;
|
|
padding: 3px 3px 3px 3px;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
color: #7fb945;
|
|
}
|
|
a:hover {
|
|
color: #3f8915;
|
|
}
|
|
|
|
hr {
|
|
height: 1px;
|
|
border: 1px solid silver;
|
|
border-bottom: none;
|
|
border-right: none;
|
|
border-left: none;
|
|
}
|
|
|
|
#container {
|
|
background: none;
|
|
width: 100%;
|
|
padding: 0px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#container hr {
|
|
width: 0px;
|
|
}
|
|
|
|
/* Navigation */
|
|
#nav {
|
|
float: left;
|
|
width: 23%;
|
|
margin: 0;
|
|
padding: 0 1em 0 0;
|
|
border-top: 1px solid silver;
|
|
border-right: 1px solid silver;
|
|
padding-left:3px;
|
|
margin-bottom: 40px;
|
|
font-size: small;
|
|
color: rgb(80,80,80);
|
|
background-color: transparent;
|
|
}
|
|
#nav a {
|
|
text-decoration: none;
|
|
}
|
|
#nav li {
|
|
margin: 0;
|
|
list-style-type: square;
|
|
list-style-position: inside;
|
|
}
|
|
#nav li:hover {
|
|
color: rgb(30,60,80);
|
|
}
|
|
|
|
/* Hauptseite */
|
|
#main {
|
|
margin-left: 25%;
|
|
padding: 0 1em;
|
|
text-align: justify;
|
|
}
|
|
#main li {
|
|
margin: 0.5em;
|
|
list-style-type: square;
|
|
list-style-position: inside;
|
|
}
|
|
|
|
/* Zitate */
|
|
blockquote {
|
|
font-style:italic;
|
|
}
|
|
/* Bildbeschreibungen*/
|
|
caption {
|
|
font-size: small;
|
|
}
|
|
.textit {
|
|
font-style: italic;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
/* Footer */
|
|
|
|
/* Fix fuer den IE, damit der footer zentriert wird */
|
|
#footer_center {
|
|
text-align: center;
|
|
}
|
|
|
|
#footer {
|
|
clear: left;
|
|
text-align: center;
|
|
width: 80%;
|
|
border-top: 1px solid silver;
|
|
margin: 30px auto 10px auto;
|
|
padding: 5px;
|
|
color: #777777;
|
|
font-size: small;
|
|
}
|