Files
roll20-character-sheets/Ghostbusters/Ghostbusters.css
T
dstack1776 30110e5371 Support for ghost characters
Added a tab to allow for a character to be a mortal or a ghost. Also
added a blank text field for powers, notes, etc.
2016-09-05 21:09:55 -04:00

123 lines
2.3 KiB
CSS

.sheet-container {
width: 800px;
margin: 0 auto;
background-image: url("http://i.imgur.com/nOk3zYE.png");
background-repeat: no-repeat;
background-position: top;
}
.sheet-row {
text-align: center;
}
.sheet-category {
font-weight: bold;
font-size: 20px;
}
input.sheet-name {
width: 300px;
}
input.sheet-talent {
width: 125px;
}
hr.sheet-rule {
border-color: #000000;
}
.sheet-rolltemplate-buster table {
width: 200px;
color: #000000;
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.sheet-rolltemplate-buster td {
/*background: url("http://i.imgur.com/MiNfp0g.png") no-repeat;*/
background: url("http://i.imgur.com/c89n8XL.png") no-repeat;
color: #000000;
padding: 10px 2px 2px 2px;
height: 219px;
line-height: 1.6em;
font-size: 1.2em;
}
.sheet-rolltemplate-content {
text-align: center;
}
.sheet-rolltemplate-die {
display: block;
font-weight: bold;
}
.sheet-rolltemplate-result {
display: block;
}
.sheet-rolltemplate-buster .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/
}
.sheet-rolltemplate-buster .inlinerollresult.fullcrit {
border: 2px solid #3FB315;
}
.sheet-rolltemplate-buster .inlinerollresult.fullfail {
border: 2px solid #B31515;
}
.sheet-rolltemplate-buster .inlinerollresult.importantroll {
border: 2px solid #4A57ED;
}
/* Main Sheet Tabs */
div[class^="sheet-section"] {
display: none;
}
input.sheet-tab1:checked ~ div.sheet-section-core,
input.sheet-tab2:checked ~ div.sheet-section-ghost {
display: block;
}
input.sheet-tab99:checked ~ div[class^="sheet-section"] {
display: block;
}
input.sheet-tab {
width: 100px;
height: 20px;
cursor: pointer;
position: relative;
opacity: 0;
z-index: 9999;
}
span.sheet-tab {
text-align: center;
display: inline-block;
font-size: 13px;
background: #dcdcdc;
font-weight: bold;
border-radius: 4px;
width: 100px;
height: 20px;
cursor: pointer;
position: relative;
margin-left: -91px;
border-bottom-color: #fff;
}
input.sheet-tab1:checked + span.sheet-tab1,
input.sheet-tab2:checked + span.sheet-tab2 {
background: #ff9999;
border-radius: 4px;
}
textarea {
height: 4em;
}