mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
* Updated NWOD-Changling so that input type='textarea' to be textareas instead -- the input type=textarea input fields seemed to not work. * Update sheet.json removing attribution update mistakenly placed in the instructions field. * updates after testing. Additionally, added first-effort dice roll buttons to the attributes. The dice roll equations are a bit gnarly, but it allows the macro to automatically decide to roll a chance die if the dice pool is 0 or lower.
33 lines
564 B
CSS
33 lines
564 B
CSS
input[type="text"]{
|
|
width: 120px;
|
|
}
|
|
textarea{
|
|
width: 120px;
|
|
height: 30px;
|
|
}
|
|
select{
|
|
width: 120px;
|
|
}
|
|
button[type='roll'].sheet-skillLabel::before {
|
|
content: '';
|
|
}
|
|
button[type='roll'].sheet-skillLabel::hover {
|
|
color:red;
|
|
}
|
|
button[type='roll'].sheet-skillLabel {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
margin-bottom: 10px;
|
|
width: 100%;
|
|
text-align: left;
|
|
float: none;
|
|
display: block;
|
|
padding-right: 10px;
|
|
margin: 0;
|
|
color: #333;
|
|
line-height: 18px;
|
|
max-width: 100%;
|
|
background: none;
|
|
border:none;
|
|
}
|