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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
body {
color: black; background-color: white;
font-family: Helvetica,Arial,sans-serif;
margin: 0; padding: 0em;
text-align: center;
}
.title {
text-align:center;
font-weight:bold;
font-style:italic;
font-size:1.8em;
padding:10px;
}
.ruler {
height:3px;
background-color:#638AD6;
margin-left:10px;
margin-right:10px;
}
.headerItem {
text-align:right;
font-weight:bold;
}
.headerValue {
text-align:left;
font-weight:bold;
color:#638AD6;
}
.tableHead {
text-align:center;
font-weight:bold;
background-color:#638AD6;
color:white;
}
.coverFile {
font-family: Courier;
background-color:#DEE7FF;
padding:3px;
width:70%;
}
.coverBar {
background-color:#DEE7FF;
padding:3px;
width:5%;
}
.coverBarOutline {
}
.coverPerHi {
font-family: Times;
text-align:center;
font-weight:bold;
background-color:lightgreen;
padding:3px;
width:5%;
}
.coverNumHi {
font-family: Times;
text-align:right;
background-color:lightgreen;
padding:3px;
width:25%;
}
.coverPerMed {
font-family: Times;
text-align:center;
font-weight:bold;
background-color:yellow;
padding:3px;
}
.coverNumMed {
font-family: Times;
text-align:right;
background-color:yellow;
padding:3px;
}
.coverPerLo {
font-family: Times;
text-align:center;
font-weight:bold;
background-color:red;
padding:3px;
}
.coverNumLo {
font-family: Times;
text-align:right;
background-color:red;
padding:3px;
}
.lineNum {
background-color:#EFE384;
}
.lineCov {
background-color:#CED7FF;
}
.lineNoCov {
background-color:#FF6131;
}
|