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
|
.test_table {
width: 100%;
border:1px solid navy;
margin:5px;
border-collapse:collapse;
background-color:white;
}
.innerTests_table {
width:auto;
border:1px solid navy;
border-collapse:collapse;
background-color:white;
margin-left:20px;
margin-top:0;
margin-bottom:0;
margin-right:20px;
}
.test_th {
border:1px solid navy;
color: navy;
background-color: #ffffcc;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
text-align: left;
padding: 2px;
}
.test_td {
border-right:1px solid navy;
border-left:1px solid navy;
vertical-align: text-top;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-align: left;
padding: 2px;
}
.innerTests_td {
padding:0;
margin-left:20px;
}
.code_heading {
height: 16px;
}
.result_heading {
height: 16px;
overflow: hidden;
}
.pass_heading {
height: 16px;
}
.code_cell {
}
.result_cell {
}
.pass_cell {
color: #009933;
}
.fail_cell {
color: #f00;
}
.tr0
{
background-color:#efefef;
}
.tr1
{
background-color:white;
}
.expandcollapse
{
font-size:12px;
font-weight:bold;
color:navy;
cursor:pointer;
}
|