1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
h1, .name {
text-align: center;
}
table {
border-collapse: collapse;
}
td, th {
border: 2px solid #D8BFD8;
padding: 5px;
text-align: center;
}
th {
background-color: #D8BFD8;
}
caption {
padding-bottom: 5px;
text-align: justify;
}
.left {
text-align: left;
}
.center {
text-align: center;
}
.abstract {
background-color: grey;
}
div.veryHigh {
background-color: green;
}
div.high {
background-color: #90EE90;
}
div.low {
background-color: lightgrey;
}
div.veryLow {
background-color: grey;
}
.expert {
background-color: lightgrey;
}
|