Advertisement
Misfits

Roll20 V20 CSS

Apr 14th, 2019
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.97 KB | None | 0 0
  1.  
  2.  
  3. .sheet-rolltemplate-wodritual table {
  4.     width: 100%;
  5.     height: 100%;
  6.     padding: 2px;
  7.     background: url(https://i.imgur.com/puo0z7r.png) top left;
  8.     background-size: 100% 100%;
  9.     background-repeat: no-repeat;
  10.     font-family: "Courier New", Courier, monospace;
  11.     font-weight: bold;
  12.     border-spacing: 0;
  13.  
  14.    
  15. }
  16.  
  17. .sheet-rolltemplate-wodritual th {
  18.     color: rgb(112, 0, 0);    
  19.     padding-top: 22%;
  20.     padding-bottom: 5%;
  21.     padding-right: 10%;
  22.     padding-left: 10%;
  23.     line-height: 1.2em;
  24.     font-size: 1.2em;
  25.     text-align: left;
  26.  
  27. }
  28.  
  29.  
  30. .sheet-rolltemplate-wodritual td {
  31.     padding-left: 10%;
  32.     padding-right: 10%;
  33.     font-size: 1.0em;
  34.     vertical-align: top;
  35.     overflow-y: auto; /* This should add a scroll bar to the roll template  pt 3*/ 
  36.     overflow-x: auto; /* This should add a scroll bar to the roll template  pt 3*/ 
  37.     max-height: 100 px;
  38.  
  39. }
  40.  
  41. .sheet-rolltemplate-wodritual .sheet-result {
  42.     font-size: 1.2em;
  43.     text-align: center;
  44.     color: rgb(112, 0, 0);
  45.     padding-bottom: 10%;
  46. }
  47.  
  48.  .sheet-rolltemplate-wodritual .sheet-rdesc {
  49.     font-size: 1.0em;
  50.     text-align: left;
  51.     position: relative; /* may be needed for this scroll bar? */
  52.     overflow-x: auto; /* This should add a scroll bar to the roll template  pt 3*/ 
  53.     overflow-y: auto; /* This should add a scroll bar to the roll template  pt 3*/ 
  54.     overflow: auto;  /* The overflow is clipped, and a scrollbar is added to see the rest of the content*/  
  55.     max-height: 100 px;
  56.     color: rgb(112, 0, 0); 
  57.     padding-bottom: 22%;
  58. }
  59.  
  60. .sheet-rolltemplate-wodritual .inlinerollresult  {
  61.     background-color: transparent;
  62.     color: #000000;
  63.     border: none;
  64. }
  65.  
  66. .sheet-rolltemplate-wodritual .inlinerollresult.fullcrit {
  67.    color: #3FB315;
  68.     border: none;
  69. }
  70.  
  71. .sheet-rolltemplate-wodritual .inlinerollresult.fullfail {
  72.     color: #000000;
  73.     border: none;
  74. }
  75.  
  76. .sheet-rolltemplate-wodritual .inlinerollresult.importantroll {
  77.     color: #3FB315;
  78.     border: none;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement