I'm having some trouble getting textareas to format correctly in my character sheet. They're taking their height and width properties from the .largedialog class that seems to be built into roll20, when I want them to use the class from my CSS. In the image above, the first textarea is the dimension I want for all of them--I've set it's height and width using the html inline style attribute. I want the remaining textareas to be set to the same dimensions, but it's not working. Here's my relevant html: <div>
<span class="inputlabel">Look</span>
<textarea class="inputarea" name="attr_divinity-look" style="width: calc(100% - 5px); height: 108px"></textarea>
</div>
<div>
<span class="inputlabel">Cult</span>
<textarea class="inputarea" name="attr_divinity-cult"></textarea>
</div>
<div>
<span class="inputlabel">Epithet:</span> <input class="inputbox" type="text" name="attr_epithet">
<textarea class="inputarea" name="attr_epithet-desc"></textarea>
</div>
and here's the relevant css: .inputarea textarea {
width: calc(100% - 5px);
height: 108px;
}
what am I doing wrong?