CPP is currently working on this sheet... You might post here; [In Progress] 7th Sea 1st Edition If you ask nicely, there are methods to incorporate font, color, and background options for a sheet. Otherwise, you can use a browser extension like Stylus to override a sheet's css with your own. This only affects your view of the sheet, so if you wanted everyone to view the sheet similarly, each person would need to use Stylus with the same overriding css changes applied. example for stylus to remove background and change font to serif. Makes for a rather ugly sheet , but obviously this can be adjusted to use whatever font-family you like, color, font-size, background-color, etc. @-moz-document url-prefix("<a href="https://app.roll20.net/editor/" rel="nofollow">https://app.roll20.net/editor/</a>") {
.charsheet {
background: none !important;
background-color: lightgrey !important;
}
.charsheet .sheet-textbox[type="text"] {
font-family: serif !important;
}
.charsheet .sheet-skilltitle,
.charsheet button[type=roll] span {
font-family: serif !important;
}
.charsheet .sheet-subtitle {
font-family: serif !important;
}
.charsheet .sheet-subtitle_2 {
font-family: serif !important;
}
.charsheet .sheet-defense {
font-family: serif !important;
}
.charsheet input.sheet-tab::before {
font-family: serif !important;
}
.charsheet span.sheet-Query,
.charsheet .sheet-textbox,
.charsheet .sheet-select,
.charsheet .sheet-skillbutton[type="roll"] label,
.charsheet .sheet-skillbutton[type="roll"] input,
.charsheet .sheet-skillbutton[type="roll"] {
font-family: serif !important;
}
.charsheet h1, h2, h3, h4 {
font-family: serif !important;
}
.sheet-rolltemplate-trait,
.sheet-rolltemplate-magic,
.sheet-rolltemplate-initiative {
background: none;
background-color: lightgrey;
}
.sheet-rolltemplate-magic .sheet-title {
font-family: serif !important;
}
.sheet-rolltemplate-magic .sheet-subtitle {
font-family: serif !important;
}
.sheet-rolltemplate-trait .sheet-item {
font-family: serif !important;
}
.sheet-rolltemplate-initiative .sheet-title {
font-family: serif !important;
}
}