SR6_Roll20_Sheet/components/_abilityBox.css

39 lines
596 B
CSS
Raw Permalink Normal View History

2022-09-14 12:16:36 +02:00
.abilityBox {
display: grid;
2022-09-30 15:15:24 +02:00
grid-template-columns: repeat(7, auto);
2022-09-14 12:16:36 +02:00
grid-auto-flow: row;
justify-content: start;
gap: 0.7em 4px;
align-items: center;
height: fit-content;
width: 100%;
> {
* {
grid-column: span 1;
}
span {
color: #aaaaee;
font-size: 13pt;
margin-right: 20px;
}
p {
color: #aaaaee;
font-size: 10pt;
text-align: center;
vertical-align: middle;
margin-bottom: 0px;
&.abilityLabel {
margin-bottom: -0.5em;
}
}
2022-09-30 15:15:24 +02:00
h2 {
margin-bottom: 40px;
}
2022-09-14 12:16:36 +02:00
}
}