mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-01 04:32:28 +00:00
49 lines
923 B
CSS
49 lines
923 B
CSS
.sheet-age-exertion .sheet-left,
|
|
.sheet-age-exertion .sheet-right {
|
|
display: inline-block;
|
|
width: calc(49%);
|
|
}
|
|
|
|
.charsheet div.sheet-row.sheet-measures-container {
|
|
display: flex;
|
|
}
|
|
|
|
.sheet-measures-container div {
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.sheet-measures-container .sheet-left {
|
|
width: calc(25%);
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.sheet-measures-container .sheet-right {
|
|
width: calc(75%);
|
|
display: flex;
|
|
}
|
|
|
|
.sheet-measures-container .sheet-quarter {
|
|
flex: 1;
|
|
border-left: 1px solid black;
|
|
border-bottom: 1px solid black;
|
|
text-align: center;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.sheet-measures-container .sheet-half {
|
|
flex: 2;
|
|
border-left: 1px solid black;
|
|
border-bottom: 1px solid black;
|
|
text-align: center;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.sheet-measures-container .sheet-full {
|
|
flex: 1;
|
|
border-left: 1px solid black;
|
|
border-bottom: 1px solid black;
|
|
text-align: center;
|
|
padding-top: 3px;
|
|
}
|