24 lines
356 B
CSS
24 lines
356 B
CSS
.damage-effect-indicator.bruise {
|
|
background-color: orange;
|
|
}
|
|
|
|
.damage-effect-indicator.lethal {
|
|
background-color: red;
|
|
}
|
|
|
|
.damage-effect-indicator {
|
|
width: 20px;
|
|
height: 30px;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
border: 1px solid black;
|
|
display: block;
|
|
user-select: none;
|
|
font-family: monospace;
|
|
}
|
|
|
|
span {
|
|
margin: 0;
|
|
font-size: smaller;
|
|
}
|