Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

CSS not applied to roll templates?

1540498040
Quinn
Pro
Sheet Author
I'm working on a custom character sheet, and I've added the roll template to the HTML/CSS, but while the HTML is parsed correctly, the CSS is all being ignored. HTML: <rolltemplate class="sheet-rolltemplate-valor">     <div class="outer">         <div class="header">             {{name}}         </div>         {{#roll}}         <br />         <div class="roll">             {{roll}}         </div>         {{/roll}}         {{#summary}}         <br />         <div>             {{summary}}         </div>         {{/summary}}     </div> </rolltemplate> CSS: .sheet-rolltemplate-valor .userscript-outer {     font-family: "Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif";     color:#730A18;     background-color:#FCECD8;     margin-left:8px;     padding-left:5px;     padding-bottom:3px; }      .sheet-rolltemplate-valor .userscript-header {     position:relative;     border:3px solid #F2AC63;     color:black;     left:-11px;     font-weight:bold;     font-size:11pt;     background-color:white;     padding:3px;     display:inline-block;     border-radius:3px; } .sheet-rolltemplate-valor .userscript-roll {     line-height: 170% } I've tried to reproduce things exactly as instructed on the wiki, but I must be doing something wrong, because the result is this: Did I miss something here?
1540499922
Natha
KS Backer
Sheet Author
API Scripter
Replace .userscript- by .sheet- in CSS