26 lines
668 B
CSS
26 lines
668 B
CSS
.body { font-family: verdana,arial,sans-serif; font-size:11px; }
|
|
.error { color: Red; }
|
|
.button { width: 100px; font-family: verdana,arial,sans-serif; font-size:11px; }
|
|
.status { color: Green; }
|
|
table.results {
|
|
font-family: verdana,arial,sans-serif;
|
|
font-size:11px;
|
|
color:#333333;
|
|
border-width: 1px;
|
|
border-color: #666666;
|
|
border-collapse: collapse;
|
|
}
|
|
table.results th {
|
|
border-width: 1px;
|
|
padding: 8px;
|
|
border-style: solid;
|
|
border-color: #666666;
|
|
background-color: #dedede;
|
|
}
|
|
table.results td {
|
|
border-width: 1px;
|
|
padding: 8px;
|
|
border-style: solid;
|
|
border-color: #666666;
|
|
background-color: #ffffff;
|
|
} |