mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-02 13:12:31 +00:00
60 lines
842 B
CSS
60 lines
842 B
CSS
.sheet-section {
|
|
padding: 1rem!important;
|
|
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
|
|
}
|
|
|
|
.sheet-sub-section {
|
|
padding: 1rem!important;
|
|
display: none;
|
|
}
|
|
|
|
.sheet-inline {
|
|
display: inline-block;
|
|
}
|
|
|
|
.sheet-block {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-full {
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-med-wide {
|
|
width: 30%;
|
|
}
|
|
|
|
.sheet-wide {
|
|
width: 45%;
|
|
}
|
|
|
|
.sheet-extra-wide {
|
|
width: 60%;
|
|
}
|
|
|
|
.sheet-column-label {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
input.sheet-arrow:checked ~ div.sheet-sub-section {
|
|
display: block;
|
|
}
|
|
|
|
/* Checkboxes and checkbox labels*/
|
|
input[type="checkbox"] {
|
|
display: inline-block;
|
|
border-style: solid black;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.sheet-checkbox-label {
|
|
display: inline;
|
|
}
|
|
|
|
.sheet-checkbox-label-small {
|
|
display: inline;
|
|
font-size: 1rem;
|
|
}
|