mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
93 lines
1.5 KiB
CSS
93 lines
1.5 KiB
CSS
.charsheet {
|
|
background-color: #c0c0c0;
|
|
}
|
|
|
|
.charsheet table{
|
|
border-collapse:separate;
|
|
border-spacing:10px;
|
|
}
|
|
|
|
.charsheet textarea{
|
|
resize:vertical;
|
|
}
|
|
|
|
.charsheet .sheet-section{
|
|
border-top: 5px solid #505050;
|
|
padding-top:10px;
|
|
padding-bottom:10px;
|
|
}
|
|
|
|
.charsheet input[type=number].sheet-smallnumber{
|
|
width:40px;
|
|
}
|
|
|
|
.charsheet input[type=text].sheet-smalltext{
|
|
width:60px;
|
|
height: 18px;
|
|
margin:0px;
|
|
}
|
|
.charsheet input[type=text].sheet-shorttext{
|
|
padding-top:2px;
|
|
padding-bottom:2px;
|
|
}
|
|
|
|
.charsheet input[type=text].sheet-skilltext{
|
|
width:100px;
|
|
padding:2px;
|
|
margin-left:3px;
|
|
}
|
|
|
|
.charsheet .sheet-right{
|
|
float:right;
|
|
}
|
|
|
|
.charsheet .sheet-bold{
|
|
font-size: 12pt;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.charsheet .sheet-border{
|
|
border: 2px solid white;
|
|
vertical-align:top;
|
|
width:100%;
|
|
padding: 2px;
|
|
margin: 2px;
|
|
}
|
|
|
|
.charsheet input[type=number].sheet-smallshortnumber{
|
|
width:40px;
|
|
padding-top:2px;
|
|
padding-bottom:2px;
|
|
display: inline-block;
|
|
float:right;
|
|
}
|
|
|
|
.charsheet input[type=number].sheet-shortnumber{
|
|
padding-top:2px;
|
|
padding-bottom:2px;
|
|
}
|
|
|
|
.charsheet label.sheet-areaLabel{
|
|
margin:5px;
|
|
}
|
|
|
|
/* New CSS */
|
|
.charsheet .sheet-flexrow{
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.charsheet input[type=text].sheet-attrtext{
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.charsheet button[type=roll].sheet-attrtext{
|
|
font-weight: bold;
|
|
font-size: 25px;
|
|
height: 22px;
|
|
width: 22px;
|
|
padding-top: 5px;
|
|
}
|