20 lines
293 B
CSS
20 lines
293 B
CSS
.pass {
|
|
font-weight: bold;
|
|
color: green;
|
|
}
|
|
.fail {
|
|
font-weight: bold;
|
|
color: red;
|
|
}
|
|
.warn {
|
|
font-weight: bold;
|
|
color: yellow;
|
|
text-shadow: 1px 1px #ff0000
|
|
}
|
|
#console {
|
|
white-space: pre-wrap;
|
|
font-family: monospace;
|
|
}
|
|
body {
|
|
background-color: #ffffff;
|
|
}
|