Konrad S. said: Brian said: Well, you could copy Roll20's base CSS, although you still wouldn't have autocalc fields. While not perfect it's at least a step in the right direction. The <div class="sheet-3colrow"> doesn't seem to work just by doing that however. Not sure what CSS you're grabbing, but if you just need the classes provided to produce multicolumn layout, you just need: .sheet-2colrow,
.sheet-3colrow {
display: block;
clear: both;
}
.sheet-3colrow .sheet-col {
width: calc(33% - 21px);
margin-right: 30px;
}
.sheet-2colrow .sheet-col {
width: calc(50% - 20px);
margin-right: 30px;
}
.sheet-col {
display: inline-block;
vertical-align: top;
} There are a few other built-in styles (for example, I believe select has a 10px margin-bottom, button[type=roll] gets the d20 image, which comes from the dicefontd20 font as a lower-case 't'), but those are the ones that will affect your layout the most.