Files
roll20-character-sheets/HeroQuest/heroquest.css
T
G-G-G b57738b061 HEROQUEST: fixed dark mode
The sheet didnt display in dark mode because of legact code and z-index.
2023-07-10 11:26:50 +01:00

20 lines
323 B
CSS

.sheet-background {
width: 800px;
height: 450px;
z-index: 0;
position:absolute;
}
.sheet-background::after {
content: "";
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
background: url('http://i.imgur.com/4OKDPud.jpg');
background-size: 800px 450px;
}