Begin implementation of the Stats / Skills tab
This commit is contained in:
parent
753d72b4e0
commit
0e8d1615a7
16 changed files with 292 additions and 64 deletions
48
styles/sheets/actor/char-sheet/pages/stats.scss
Normal file
48
styles/sheets/actor/char-sheet/pages/stats.scss
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
.dotdungeon .actor--pc .active.stats-panel {
|
||||
display: grid;
|
||||
height: 100%;
|
||||
gap: 16px;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: auto auto auto;
|
||||
|
||||
.stat {
|
||||
border-radius: 8px;
|
||||
color: white;
|
||||
|
||||
select {
|
||||
height: 100%;
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
&__header {
|
||||
padding: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
color: var(--stat-divider-text-color);
|
||||
gap: 8px;
|
||||
> :first-child {
|
||||
flex-grow: 1;
|
||||
}
|
||||
&:not(:only-child) {
|
||||
border-bottom: 1px solid var(--stat-divider-color);
|
||||
}
|
||||
}
|
||||
|
||||
&__skills {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 8px;
|
||||
margin: 8px;
|
||||
align-items: center;
|
||||
label {
|
||||
text-align: end;
|
||||
justify-self: right;
|
||||
}
|
||||
button {
|
||||
margin-right: 25%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue