mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
.charsheet label {
|
|
display: inline-block;
|
|
width: 100px;
|
|
text-align: right;
|
|
}
|
|
|
|
.charsheet input {
|
|
display: inline-block;
|
|
width: 220px;
|
|
}
|
|
|
|
.sheet-col strong.sheet-dee {
|
|
font-size: 1.4em;
|
|
font-weight: bold;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.charsheet input.sheet-short {
|
|
width: 5em;
|
|
}
|
|
|
|
.charsheet {
|
|
font-family: "Trebuchet MS", "Helvetica", sans-serif;
|
|
background: #EEEEEF;
|
|
color: #222222;
|
|
background-image: url("http://olddesignshop.com/wp-content/uploads/2013/02/OldDesignShop_12x12Page001.jpg");
|
|
|
|
|
|
.charsheet .sheet-item {
|
|
padding: 1vh;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.charsheet label {
|
|
font-size: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.charsheet .sheet-col{
|
|
background: #E6E6E3;
|
|
}
|
|
|
|
/*----------- Details and Summary -------*/
|
|
.charsheet summary {
|
|
cursor: pointer;
|
|
display: revert;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
}
|
|
|
|
.column {
|
|
flex: 50%;
|
|
float: left;
|
|
width: 50%;
|
|
}
|
|
}
|
|
|
|
.charsheet table td, .charsheet table th {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
select.sheet-dtype {
|
|
width: 100px;
|
|
vertical-align: top;
|
|
} |