43 lines
497 B
CSS
43 lines
497 B
CSS
table {
|
|
border-collapse: collapse;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
th {
|
|
background-color: #185886;
|
|
color: white;
|
|
}
|
|
|
|
th, td {
|
|
text-align: center;
|
|
border: 1px solid #ccc;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Ubuntu';
|
|
font-size: 10pt;
|
|
}
|
|
|
|
tr:nth-child(2n) {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.abbreviations {
|
|
margin-top: 5px;
|
|
margin-right: 5px;
|
|
float: left;
|
|
}
|
|
|
|
|
|
.colwidth {
|
|
width: 80px;
|
|
}
|
|
|
|
.training {
|
|
color: #185886;
|
|
}
|
|
|
|
.event {
|
|
color: green;
|
|
} |