mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-11 09:32:33 +00:00
74 lines
912 B
CSS
74 lines
912 B
CSS
.charsheet {
|
|
background-color: #FBEEC1;
|
|
min-width: 800px;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
width: 370px;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
width: 20%;
|
|
font-size: small;
|
|
font-weight: normal;
|
|
}
|
|
|
|
button {
|
|
height: 22px;
|
|
}
|
|
|
|
.sheet-column {
|
|
float: left;
|
|
width: 50%;
|
|
max-width: 450px;
|
|
}
|
|
|
|
.sheet-minicolumn {
|
|
float: left;
|
|
width: 12%;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-smallcolumn {
|
|
float: left;
|
|
width: 15%;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-firstcolumn {
|
|
float: left;
|
|
width: 12%;
|
|
font-size: 12px;
|
|
padding-top: 7px;
|
|
}
|
|
|
|
.sheet-row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.sheet-smallrow:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.sheet-smallrow {
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.sheet-line {
|
|
padding: 1px;
|
|
}
|
|
|
|
.sheet-title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-centered {
|
|
text-align: center;
|
|
}
|