BOSWatch/exampleAddOns/simpleWeb/style.css
2015-07-14 21:40:56 +02:00

49 lines
906 B
CSS

/*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)*/
tr:nth-child(2n+2) { background: white; }
tr:nth-child(2n+3) { background: lightgray; }
/*table head*/
.tableHead{
color: white;
background-color: #BE2F01;
font-weight: bold;
}
.highlight {
color: #BE2F01;
font-weight: bold;
border: 2px solid #BE2F01;
}
/*footer*/
#footer{
margin-top: 50px;
margin-bottom: 25px;
text-align: center;
color: gray;
}
#footer a{ color: gray; font-weight: bold;}