27 lines
428 B
CSS
27 lines
428 B
CSS
.turn-marker {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
background-color: #444;
|
|
color: beige;
|
|
font-weight: bold;
|
|
font-size: 80%;
|
|
}
|
|
|
|
.check-marker {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
background-color: darkred;
|
|
color: beige;
|
|
font-weight: bold;
|
|
font-size: 80%;
|
|
}
|
|
|
|
.victory-marker {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
background-color: darkgreen;
|
|
color: beige;
|
|
font-weight: bold;
|
|
font-size: 80%;
|
|
}
|