
Hi there. I've been learning some html and css, and hacking together a sheet. I got some help styling the sheet from my brother who codes for a living and is studying user experience, design, etc. It looks pretty neat, but I can't figure out why it won't work with any CSS styling in roll20. I've of course been reading around, looking at guides that talk about making sure to use .charsheet- and .sheet- or something, but can't seem to figure out what I'm missing. I'll keep trying, but maybe you guys can save me some time? Hoping to run a playtest with it tomorrow and been at it most of the day and week. I'll post the first table code here, and then the css after. Feel like it's likely something simple. Thanks for any help!
HTML:
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Girassol&display=swap" rel="stylesheet">
</head>
<!-- TABS HTML only -->
<!-- ATTRIBUTES -->
<div class="entiretable">
<table class="MsoNormalTable" width="240" align="left">
<tr>
<th colspan="2" class="firstATRrow">Physical</th>
<th colspan="2" class="firstATRrow">Mental</th>
<th colspan="2" class="firstATRrow">Derived</th>
</tr>
<tr>
<td class="ATRcolumn">ST</td>
<td class="inputArea">
<input type="number" name="attr_strength" placeholder="0" min="-5" max="5">
</td>
<td class="ATRcolumn">
WP
</td>
<td class="inputArea">
<p class="Standard" style="text-align: center;" align="center"><input type="number" name="attr_willpower" style="" placeholder="0" min="-5" max="5"></p>
</td>
<td class="ATRcolumnTotal" width="45">
<p class="" style="text-align: center;" align="center">
<span style="">AP</span>
</p>
</td>
<td class="inputAreaTotal">
<input type="text" name="attr_actionpoints" style=" font-weight: bold;" placeholder="4">
</td>
</tr>
<tr >
<td class="ATRcolumn">
AG
</td>
<td class="inputArea">
<input type="number" name="attr_agility" style=" font-weight: bold;" value="0" min="-5" max="5">
</td>
<td class="ATRcolumn" style="">
WT
</td>
<td class="inputArea">
<p class="Standard" style="text-align: center;" align="center"><input type="number" name="attr_wit" style=" font-weight: bold;" value="0" min="-5" max="5"></p>
</td>
<td class="ATRcolumnTotal">
RF
</td>
<td class="inputAreaTotal">
<input type="number" name="attr_reflex" value="0" min="-10" max="10">
</td>
</tr>
<tr style="height: 12.8pt;">
<td class="ATRcolumn">
TG
</p>
</td>
<td class="inputArea">
<input type="number" name="attr_toughness" style=" font-weight: bold;" placeholder="0" min="-5" max="5">
</td>
<td class="ATRcolumn">
<p class="Standard" style="text-align: center;" align="center">
<span >PR</span>
</p>
</td>
<td class="inputArea">
<p class="Standard" style="text-align: center;" align="center"><input type="number" name="attr_perception" style=" font-weight: bold;" placeholder="0" min="-5" max="5"></p>
</td>
<td class="ATRcolumnTotal">
KN
</td>
<td class="inputAreaTotal">
<!--removed <p> tag from this input and other input fields to fix formatting -->
<input type="number" name="attr_knockdown" style=" font-weight: bold;" placeholder="0" min="-5" max="5">
</td>
</tr>
<tr class="" style="">
<td class="ATRcolumn" style="">
SZ
</td>
<td class="inputArea">
<input type="number" name="attr_size" style=" font-weight: bold;" placeholder="0" min="-6">
</td>
<td style="" class="ATRcolumn">
IN
</td>
<td class="inputArea">
<input type="number" name="attr_intelligence" style=" font-weight: bold;" placeholder="0" min="-5" max="5">
</td>
<td class="ATRcolumnTotal">
KO
</td>
<td class="inputAreaTotal">
<input class="" type="number" name="attr_knockout" style=" font-weight: bold;" placeholder="0" min="-5" max="5">
</td>
</tr>
<tr class="tablefooter1">
<td class="ATRcolumnTotal ">
PW
</td>
<td >
<input type="number" name="attr_power" style=" font-weight: bold;" placeholder="0">
</td>
<td class="ATRcolumnTotal">
BD
</td>
<td>
<p class="Standard" style="text-align: center;" align="center"><input type="number" name="attr_body" style=" font-weight: bold;" placeholder="0"></p>
</td>
<td class="ATRcolumnTotal" id="move">
Move
</td>
<td>
<input type="text" name="attr_movement" style=" font-weight: bold;" placeholder="5">
</td>
</tr>
</table>
</div>