mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
19 lines
246 B
CSS
19 lines
246 B
CSS
button {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
#fail-marker {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: red;
|
|
font-weight: bold;
|
|
color: white;
|
|
text-align: center;
|
|
visibility: hidden;
|
|
}
|
|
|
|
#fail-marker::before {
|
|
content: "FAIL";
|
|
position: relative;
|
|
top: 15px;
|
|
} |