style boost

This commit is contained in:
2024-11-16 20:02:56 -06:00
parent 0a62eb7582
commit 48ab8f7964
24 changed files with 278 additions and 203 deletions

View File

@@ -1,26 +1,30 @@
.turn-marker {
display: inline-block;
padding: 3px 8px;
background-color: #444;
color: beige;
padding: 2px 5px;
background-color: var(--foregroundColor);
background-color: var(--middlegroundColor);
color: var(--backgroundColor);
font-weight: bold;
font-size: 80%;
border-radius: 8px;
}
.check-marker {
display: inline-block;
padding: 3px 8px;
background-color: darkred;
color: beige;
padding: 2px 5px;
background-color: #f3a1a1;
color: darkred;
font-weight: bold;
font-size: 80%;
border-radius: 8px;
}
.victory-marker {
display: inline-block;
padding: 3px 8px;
padding: 2px 5px;
background-color: darkgreen;
color: beige;
color: white;
font-weight: bold;
font-size: 80%;
border-radius: 8px;
}