2015-07-14 10:23:43 +02:00
|
|
|
/*navigation*/
|
|
|
|
|
#navi{
|
|
|
|
|
width: 400px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#navi a:link { color: red; text-decoration: none;}
|
|
|
|
|
#navi a:visited { color: red; }
|
|
|
|
|
#navi a:hover { color: black; }
|
|
|
|
|
#navi a:active { color: black; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*table center and border in*/
|
|
|
|
|
table { margin: auto; border-collapse: collapse; }
|
|
|
|
|
|
|
|
|
|
/*Tabellen mit Rahmen*/
|
|
|
|
|
table, th, td { border: 1px solid black; }
|
|
|
|
|
|
|
|
|
|
/*alternating line color in table*/
|
|
|
|
|
/*without first line (header)*/
|
2015-07-14 13:46:17 +02:00
|
|
|
tr:nth-child(2n+2) { background: white; }
|
|
|
|
|
tr:nth-child(2n+3) { background: lightgray; }
|
2015-07-14 10:23:43 +02:00
|
|
|
|
|
|
|
|
/*table head*/
|
|
|
|
|
.tableHead{
|
|
|
|
|
color: white;
|
|
|
|
|
background-color: #BE2F01;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 13:46:17 +02:00
|
|
|
.highlight {
|
|
|
|
|
color: #BE2F01;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
border: 2px solid #BE2F01;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 10:23:43 +02:00
|
|
|
|
|
|
|
|
/*footer*/
|
|
|
|
|
#footer{
|
|
|
|
|
margin-top: 50px;
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: gray;
|
|
|
|
|
}
|
2015-07-14 11:31:18 +02:00
|
|
|
#footer a{ color: gray; font-weight: bold;}
|