mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Commented out background image as the URL for it is no longer valid. Added support to the css file for divTables so the HTML file can be converted from tables to divs.
59 lines
1.0 KiB
CSS
59 lines
1.0 KiB
CSS
.charsheet label {
|
|
text-align: right; padding-top: 10px;
|
|
}
|
|
|
|
.charsheet h3 {
|
|
margin-bottom: 10px;
|
|
background:#000;
|
|
color:#fff;
|
|
text-align:center;
|
|
}
|
|
.charsheet input {
|
|
display: inline-block;
|
|
}
|
|
|
|
.charsheet input.sheet-short {
|
|
width: 3.5em;
|
|
}
|
|
|
|
/*.charsheet {
|
|
background-image: url("http://freeseamlesstextures.com/images/28-faded-parchment-background-sml.jpg");
|
|
}*/
|
|
|
|
.charsheet table td, .charsheet table th {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
/* DivTable.com */
|
|
.sheet-divTable{
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
.sheet-divTableRow {
|
|
display: table-row;
|
|
}
|
|
.sheet-divTableHeading {
|
|
background-color: #EEE;
|
|
display: table-header-group;
|
|
}
|
|
.sheet-divTableCell, .sheet-divTableHead {
|
|
border: 0px solid #999999;
|
|
display: table-cell;
|
|
padding: 3px 10px;
|
|
}
|
|
.sheet-divTableHeading {
|
|
background-color: #EEE;
|
|
display: table-header-group;
|
|
font-weight: bold;
|
|
}
|
|
.sheet-divTableFoot {
|
|
background-color: #EEE;
|
|
display: table-footer-group;
|
|
font-weight: bold;
|
|
}
|
|
.sheet-divTableBody {
|
|
display: table-row-group;
|
|
}
|