mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 12:12:30 +00:00
Changed the look to be slightly more compact. Added auto-calculation of modifiers, max health, and max load. Added checkboxes for showing and hiding move descriptions. Added attributes for base health and base load.
109 lines
1.7 KiB
CSS
109 lines
1.7 KiB
CSS
.sheet-show-move:checked ~ .sheet-move-body,
|
|
.sheet-show-hp:checked ~ .sheet-hp,
|
|
.sheet-hp-base,
|
|
.sheet-show-load:checked ~ .sheet-load-base,
|
|
.sheet-load {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-show-hp:checked ~ .sheet-hp-base,
|
|
.sheet-hp,
|
|
.sheet-show-load:checked ~ .sheet-load,
|
|
.sheet-load-base {
|
|
display: inline-block;
|
|
}
|
|
|
|
.sheet-table-name {
|
|
background-color: black;
|
|
color: white;
|
|
font-weight:bold;
|
|
text-align:center;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-dw-header-field {
|
|
float: left;
|
|
background-color: black;
|
|
color: white;
|
|
border: none;
|
|
height: 48px;
|
|
font-size: 32px;
|
|
vertical-align: middle;
|
|
width:100%;
|
|
}
|
|
|
|
.charsheet label {
|
|
display: inline;
|
|
text-align: left;
|
|
padding: 0px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.charsheet textarea {
|
|
height: 3em;
|
|
}
|
|
|
|
.sheet-section-name {
|
|
font-weight: bold;
|
|
margin: 0px 10px;
|
|
}
|
|
|
|
.sheet-move-name {
|
|
width: 95%;
|
|
}
|
|
|
|
.sheet-move-body {
|
|
height: 100px;
|
|
}
|
|
|
|
.sheet-dw-header {
|
|
background-color: #000;
|
|
color: #fff;
|
|
padding: 2px 0px;
|
|
vertical-align: middle;
|
|
line-height: 100%;
|
|
height: 32px;
|
|
line-height:32px;
|
|
font-size: 1.1em;
|
|
margin: 3px 0px;
|
|
box-align: center;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.sheet-dw-header input {
|
|
vertical-align: center;
|
|
}
|
|
|
|
.sheet-dw-header input[type="number"] {
|
|
text-align: right;
|
|
}
|
|
|
|
.sheet-dw-header label {
|
|
margin-left: 8px;
|
|
color: #fff;
|
|
}
|
|
|
|
.sheet-dw-attribute {
|
|
width: 135px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-dw-attribute label {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.sheet-dw-attribute input[type="number"] {
|
|
text-align: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.sheet-dw-name {
|
|
font-size: 1.3em;
|
|
width: 100%;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
select.sheet-dtype {
|
|
margin-bottom: 0px;
|
|
width:60px;
|
|
} |