RC-55 | Grit Skills | Setup

This commit is contained in:
Oliver-Akins 2025-01-01 15:38:16 -07:00
parent ff80531aa6
commit b24c07705a
5 changed files with 56 additions and 4 deletions

View file

@ -1,10 +1,10 @@
.ripcrypt .HeroSummaryCardV1 {
.ripcrypt .HeroSkillsCardV1 {
/* Foundry Variable Tweaks */
--input-height: 1rem;
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 1.25fr) minmax(0, 2.5fr);
grid-template-columns: repeat(3, minmax(0, 1fr));
grid-template-rows: repeat(13, minmax(0, 1fr));
column-gap: var(--col-gap);
@ -29,4 +29,25 @@
text-overflow: ellipsis;
font-weight: bold;
}
.skill-list-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.skill-list {
& > li {
padding-left: 4px;
}
& > :nth-child(even) {
background: var(--alt-row-background);
color: var(--alt-row-text);
}
}
.grit-skills {
grid-column: 1 / span 1;
grid-row: 2 / span 4;
}
}