28 lines
378 B
CSS
28 lines
378 B
CSS
.site-news { font-family: monospace; }
|
|
.site-news > span { display: block; }
|
|
|
|
.rbuilds > a {
|
|
display: block;
|
|
font-family: monospace;
|
|
}
|
|
.rbuilds > a > span {
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.bstatus {
|
|
color: red;
|
|
margin: 0 0.2em;
|
|
}
|
|
|
|
.bstatus[data-ok=true] {
|
|
color: green;
|
|
}
|
|
|
|
.bstatus:before {
|
|
content: "Failed";
|
|
}
|
|
|
|
.bstatus[data-ok=true]:before {
|
|
content: "OK";
|
|
}
|