Files
Daniel Kluver 75842bd4f7 [NWOD-Changling] bugfix and add dice-roll buttons (#6842)
* 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.
2020-06-29 11:07:40 -05:00

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;
}