mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 04:02:29 +00:00
Adds checkbox on settings page to toggle quick-character mode. This option hides sections of the sheet that aren't used by quick characters (or are calculated differently for them), and adds new sections for quick-character dice pools.
894 lines
24 KiB
CSS
894 lines
24 KiB
CSS
.charsheet {
|
|
position: absolute;
|
|
left: 0;
|
|
padding: 0 0 0 10px !important;
|
|
height: calc(100% - 70px);
|
|
width: calc(100% - 12px);
|
|
}
|
|
|
|
.sheet-content {
|
|
height: 100%;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: row;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sheet-body {
|
|
display: block;
|
|
padding: 5px 0 5px 0;
|
|
overflow-x: visible;
|
|
overflow-y: scroll;
|
|
position: relative;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.sheet-body::-webkit-scrollbar {
|
|
-webkit-appearance: none;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
.sheet-body::-webkit-scrollbar-thumb {
|
|
border-radius: 4px;
|
|
border: 2px solid transparent;
|
|
background-color: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.sheet-footer {
|
|
padding-top: 3px;
|
|
text-align: right;
|
|
background: url(http://i.imgur.com/R0FTYGB.jpg) white no-repeat;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.sheet-footer button[type=roll] {
|
|
background: transparent;
|
|
border: 2px solid gray;
|
|
}
|
|
|
|
.sheet-txt-lg { font-size: 150%; }
|
|
.sheet-80pct { width: 80% !important; }
|
|
.sheet-text-right { text-align: right; }
|
|
.sheet-text-center { text-align: center; }
|
|
|
|
button[type=roll]::before { content: "" !important; }
|
|
button[type=roll].btn {
|
|
font-size: 13px;
|
|
line-height: 13px;
|
|
}
|
|
|
|
.sheet-fixedwidth { display: inline-block; }
|
|
|
|
.sheet-center-table.sheet-80pct {
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.sheet-table {
|
|
display: table;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
.sheet-table-header { display: table-header-group; }
|
|
div.sheet-table-body,
|
|
fieldset.sheet-table-body + .repcontainer { display: table-row-group; }
|
|
.sheet-table-row,
|
|
.sheet-table .repcontrol,
|
|
.sheet-table-body + .repcontainer .repitem { display: table-row; }
|
|
.sheet-table-cell { display: table-cell; }
|
|
.sheet-table-header .sheet-table-cell { font-weight: bold; }
|
|
.sheet-table-cell:not(:last-child) { padding-right: 3px; }
|
|
.sheet-table .repcontrol { width: 100%; }
|
|
.sheet-table .repcontainer + .repcontrol .repcontrol_edit {
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
.sheet-table .editmode + .repcontrol .repcontrol_edit {
|
|
right: 41px;
|
|
left: initial;
|
|
}
|
|
.sheet-table [data-groupname=repeating_intimacies].editmode + .repcontrol .repcontrol_edit,
|
|
.sheet-table [data-groupname=repeating_charms].editmode + .repcontrol .repcontrol_edit,
|
|
.sheet-table [data-groupname=repeating_spells].editmode + .repcontrol .repcontrol_edit { right: 0; }
|
|
|
|
[data-groupname=repeating_weapon].editmode .repitem .itemcontrol,
|
|
[data-groupname=repeating_armor].editmode .repitem .itemcontrol,
|
|
[data-groupname=repeating_intimacies].editmode .repitem .itemcontrol,
|
|
[data-groupname=repeating_spells].editmode .repitem .itemcontrol { height: 28px; }
|
|
[data-groupname=repeating_weapon].editmode .repitem .itemcontrol { width: calc(100% - 41px); }
|
|
[data-groupname=repeating_armor].editmode .repitem .itemcontrol { width: calc(100% - 30px); }
|
|
[data-groupname=repeating_weapon].editmode .sheet-table-cell,
|
|
[data-groupname=repeating_armor].editmode .sheet-table-cell { position: relative; }
|
|
[data-groupname=repeating_weapon].editmode .sheet-table-cell { left: -41px; }
|
|
[data-groupname=repeating_armor].editmode .sheet-table-cell { left: -30px; }
|
|
|
|
.sheet-flexbox-h > label,
|
|
.sheet-flexbox0 {
|
|
width: 100%;
|
|
line-height: 28px;
|
|
margin-bottom: 0;
|
|
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
|
|
-webkit-flex-direction: row;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sheet-flexbox-inline {
|
|
display: -webkit-inline-flex;
|
|
display: inline-flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-flexbox-inline > label > span {
|
|
white-space: nowrap;
|
|
font-size: 89%;
|
|
}
|
|
|
|
.sheet-flexbox-h input[type=text],
|
|
.sheet-flexbox-h input[type=number],
|
|
.sheet-flexbox-h select {
|
|
-webkit-flex: 1 1 40%;
|
|
flex: 1 1 40%;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.sheet-2col {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.sheet-3colrow .sheet-2col:last-child { margin-right: 0; }
|
|
|
|
.sheet-3colrow .sheet-2col {
|
|
width: calc(66% - 5px);
|
|
margin-right: 30px;
|
|
}
|
|
|
|
.sheet-2col .sheet-2colrow .sheet-col {
|
|
width: calc(50% - 11px);
|
|
margin-right: 18px;
|
|
position: relative;
|
|
}
|
|
|
|
[title] { cursor: help; }
|
|
.sheet-dotted { border-bottom: 1px dotted black; }
|
|
|
|
input[type=text],
|
|
input[type=number] {
|
|
display: inline-block;
|
|
width: 165px;
|
|
font-size: 12pt;
|
|
height: 25px;
|
|
border: 0px;
|
|
border-bottom: 1px solid black;
|
|
border-radius: 0px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
input[type=number] { text-align: center; }
|
|
|
|
input[type=number][disabled],
|
|
input[type=number][readonly],
|
|
select[disabled] {
|
|
background-color: rgba(128, 128, 128, 0.25);
|
|
}
|
|
|
|
input[type=text]:not(:focus),
|
|
input[type=number]:not(:focus),
|
|
[readonly]:focus {
|
|
-moz-box-shadow: 0 0 0 #000;
|
|
-webkit-box-shadow: 0 0 0 #000;
|
|
box-shadow: 0 0 0 #000;
|
|
}
|
|
|
|
h1,
|
|
hr {
|
|
background-image: url(http://i.imgur.com/TwZ84rO.jpg);
|
|
background-position: left 50%;
|
|
background-repeat: repeat-x;
|
|
background-size: auto 10px;
|
|
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
hr { height: 10px; }
|
|
|
|
label {
|
|
font-size: 16px;
|
|
display: inline;
|
|
cursor: pointer;
|
|
padding-right: 0;
|
|
}
|
|
|
|
h1 span {
|
|
background: #fff;
|
|
padding: 0 5px;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
*, .sheet-printed { font-family: Cimiez, Arial, sans-serif; }
|
|
input, select, option, optgroup, textarea, .btn:not([type=roll]) { font-family: Arial, sans-serif; }
|
|
.btn.pictos { font-family: Pictos; }
|
|
|
|
* { font-variant: small-caps; }
|
|
input, select, option, optgroup, textarea, .sheet-normal-caps, .btn:not([type=roll]) { font-variant: normal; }
|
|
|
|
::-webkit-input-placeholder { font-style: italic; }
|
|
:-moz-placeholder { font-style: italic; }
|
|
::-moz-placeholder { font-style: italic; }
|
|
:-ms-input-placeholder { font-style: italic; }
|
|
|
|
.sheet-checklist > label {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-trait > * {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.sheet-trait {
|
|
position: relative;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.sheet-trait > span:last-child,
|
|
.sheet-trait > input:last-child {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.sheet-6rows {
|
|
height: calc(6em + 30px);
|
|
}
|
|
|
|
.sheet-motes,
|
|
.sheet-battle-group-row {
|
|
margin-top: 10px;
|
|
clear: right;
|
|
position: relative;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.sheet-trait input[type="number"],
|
|
.sheet-motes input[type=number],
|
|
.sheet-battle-group-row input[type=number] {
|
|
width: 1.75em;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-motes:last-child input[type=number],
|
|
.sheet-battle-group-row:last-child input[type=number],
|
|
.sheet-battle-group-row select {
|
|
width: 71px;
|
|
}
|
|
|
|
input[type=number]::-webkit-inner-spin-button,
|
|
input[type=number]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
input[type=number] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
.sheet-motes span,
|
|
.sheet-battle-group-row span {
|
|
display: inline-block;
|
|
}
|
|
|
|
.sheet-motes span:last-child,
|
|
.sheet-battle-group-row span:last-child {
|
|
position: absolute;
|
|
right: 40px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.sheet-battle-group-row select:last-child {
|
|
position: absolute;
|
|
right: 40px;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
width: 96%;
|
|
background-color: transparent;
|
|
}
|
|
|
|
select {
|
|
width: 45px;
|
|
margin-bottom: 0;
|
|
background-color: transparent;
|
|
border: 0;
|
|
border-bottom: 1px solid black;
|
|
border-radius: 0;
|
|
}
|
|
|
|
table td,
|
|
table th {
|
|
font-size: 13px;
|
|
font-weight: bolder;
|
|
font-family: "arial";
|
|
text-align: left;
|
|
width: 0%;
|
|
border: 0px #000000;
|
|
padding: 2px;
|
|
vertical-align: middle;
|
|
color: #000000;
|
|
margin:0px 0px;
|
|
}
|
|
|
|
h2 {
|
|
text-decoration:overline underline;
|
|
}
|
|
|
|
/* Hide actual checkbox */
|
|
input[type=checkbox] {
|
|
position: absolute;
|
|
opacity: 0.0;
|
|
width: 15px;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* Styles for fake checkbox (checked or unchecked) */
|
|
input[type=checkbox] + span::before {
|
|
border: solid 1px #000000;
|
|
line-height: 11px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
|
|
-moz-box-shadow: 0 0 0 #000;
|
|
-webkit-box-shadow: 0 0 0 #000;
|
|
box-shadow: 0 0 0 #000;
|
|
|
|
background: #000000;
|
|
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: radial-gradient(#f6f6f6, #dfdfdf);
|
|
|
|
position: relative;
|
|
content: "";
|
|
opacity: 1.0;
|
|
width: 10px;
|
|
height: 10px;
|
|
font-size: 12px;
|
|
|
|
-moz-border-radius: 1px;
|
|
-webkit-border-radius: 1px;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
/* Fake checkbox (checked) */
|
|
input[type=checkbox]:checked + span::before {
|
|
content: "✓";
|
|
color: #a00;
|
|
font-weight: bold;
|
|
|
|
-moz-box-shadow: 0 0 2px transparent;
|
|
-webkit-box-shadow: 0 0 2px transparent;
|
|
box-shadow: 0 0 2px transparent;
|
|
}
|
|
|
|
/* Crafting/MA popup */
|
|
input[type=checkbox].sheet-unnamed-toggle {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
z-index: 5;
|
|
}
|
|
|
|
input[type=checkbox].sheet-unnamed-toggle + span::before {
|
|
width: 100%;
|
|
height: calc(100% - 3px);
|
|
content: attr(title);
|
|
text-align: center;
|
|
line-height: 100%;
|
|
font-size: 18px;
|
|
overflow: hidden;
|
|
z-index: 4;
|
|
}
|
|
|
|
.sheet-layer7,
|
|
.sheet-layer7::before { z-index: 7; }
|
|
.sheet-layer6,
|
|
.sheet-layer6::before { z-index: 6; }
|
|
.sheet-layer5,
|
|
.sheet-layer5::before { z-index: 5; }
|
|
.sheet-layer4,
|
|
.sheet-layer4::before { z-index: 4; }
|
|
.sheet-layer3,
|
|
.sheet-layer3::before { z-index: 3; }
|
|
|
|
input[type=checkbox].sheet-unnamed-toggle:checked + span::before {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
input[type=checkbox].sheet-unnamed-toggle:not(:checked) + span + div { display: none; }
|
|
input[type=checkbox].sheet-unnamed-toggle:checked + span + div {
|
|
display: block;
|
|
position: relative;
|
|
top: -1px;
|
|
left: -142px;
|
|
border: 1px solid black;
|
|
padding: 5px;
|
|
background-color: #f6f6f6;
|
|
width: 250px;
|
|
}
|
|
|
|
.sheet-unnamed-toggle + span + div > .sheet-trait > label,
|
|
[data-groupname=repeating_crafts] input,
|
|
[data-groupname=repeating_ma] input { width: 130px; }
|
|
|
|
.sheet-unnamed-toggle + span + div > .sheet-trait > label,
|
|
.sheet-unnamed-toggle + span + div > .sheet-trait > label > label,
|
|
[class=sheet-equations] input {
|
|
width: 100px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
[data-groupname=repeating_abilities] input[type=text] { width: 120px; }
|
|
|
|
[data-groupname=repeating_specialties] input,
|
|
.sheet-crafting-projects input { margin-top: 3px; }
|
|
|
|
[data-groupname=repeating_merits] .repitem {
|
|
display: inline-block;
|
|
width: calc(50% - 20px);
|
|
margin-right: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
[data-groupname=repeating_merits] input[type=text] { width: calc(100% - 120px); }
|
|
|
|
[data-groupname=repeating_weapon] input[type=text] { width: 170px; }
|
|
[data-groupname=repeating_weapon] input[type=number] { width: 40px; }
|
|
|
|
[data-groupname=repeating_intimacies] input[type=text],
|
|
[data-groupname=repeating_charms] input,
|
|
[data-groupname=repeating_spells] input[type=text],
|
|
[data-groupname=repeating_spells] input[type=number] {
|
|
width: 80px;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
[data-groupname=repeating_intimacies] select,
|
|
[data-groupname=repeating_intimacies] input[type=text] { width: 100%; }
|
|
|
|
[data-groupname=repeating_weapon] input,
|
|
[data-groupname=repeating_armor] input,
|
|
[data-groupname=repeating_intimacies] select,
|
|
[data-groupname=repeating_intimacies] input[type=text],
|
|
[data-groupname=repeating_charms] select,
|
|
[data-groupname=repeating_charms] input[type=text],
|
|
[data-groupname=repeating_charms] input[type=number],
|
|
[data-groupname=repeating_spells] select,
|
|
[data-groupname=repeating_spells] input[type=text],
|
|
[data-groupname=repeating_spells] input[type=number] { margin-bottom: 3px; }
|
|
|
|
.sheet-unnamed-toggle + span + div > .sheet-trait > label {
|
|
display: inline-block;
|
|
margin: 0;
|
|
}
|
|
|
|
.repcontrol_del,
|
|
.repcontrol_move {
|
|
z-index: 11;
|
|
position: absolute;
|
|
}
|
|
.repcontrol_del { right: 0; }
|
|
|
|
.editmode + .repcontrol .repcontrol_edit {
|
|
float: none !important;
|
|
position: relative;
|
|
left: calc(100% - 52px);
|
|
}
|
|
|
|
.repcontainer { margin-bottom: 5px; }
|
|
|
|
/* Rotating click to set dots */
|
|
div.sheet-dots,
|
|
div.sheet-dots input[class^=sheet-dots],
|
|
div.sheet-dots input[class^=sheet-dots] + span {
|
|
width: 100px;
|
|
height: 20px;
|
|
}
|
|
|
|
div.sheet-damage-box { margin-left: 2px; }
|
|
div.sheet-damage-box,
|
|
div.sheet-damage-box input[class^=sheet-dots],
|
|
div.sheet-damage-box input[class^=sheet-dots] + span {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
div.sheet-dots-full,
|
|
div.sheet-dots-full input[class^=sheet-dots],
|
|
div.sheet-dots-full input[class^=sheet-dots] + span {
|
|
width: 251px;
|
|
height: 20px;
|
|
}
|
|
|
|
input[class^=sheet-dots],
|
|
input[class^=sheet-dots] + span,
|
|
input[class^=sheet-dots] + span::before {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
div.sheet-dots {
|
|
display: inline-block;
|
|
position: absolute;
|
|
padding: 0;
|
|
right: 15px;
|
|
}
|
|
|
|
div.sheet-dots-full,
|
|
div.sheet-damage-box {
|
|
position: relative;
|
|
}
|
|
|
|
input[class^=sheet-dots] + span {
|
|
display: inline-block;
|
|
z-index: 0;
|
|
}
|
|
|
|
input[class^=sheet-dots] {
|
|
opacity: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
input.sheet-dots0 { z-index: 2; }
|
|
.sheet-layer4 input.sheet-dots0 { z-index: 6; }
|
|
.sheet-layer6 input.sheet-dots0 { z-index: 8; }
|
|
|
|
input.sheet-dots0:checked ~ input.sheet-dots1,
|
|
input.sheet-dots1:checked ~ input.sheet-dots2,
|
|
input.sheet-dots2:checked ~ input.sheet-dots3,
|
|
input.sheet-dots3:checked ~ input.sheet-dots4,
|
|
input.sheet-dots4:checked ~ input.sheet-dots5,
|
|
input.sheet-dots5:checked ~ input.sheet-dots6,
|
|
input.sheet-dots6:checked ~ input.sheet-dots7,
|
|
input.sheet-dots7:checked ~ input.sheet-dots8,
|
|
input.sheet-dots8:checked ~ input.sheet-dots9,
|
|
input.sheet-dots9:checked ~ input.sheet-dots10 { z-index: 3; }
|
|
.sheet-layer4 input.sheet-dots0:checked ~ input.sheet-dots1,
|
|
.sheet-layer4 input.sheet-dots1:checked ~ input.sheet-dots2,
|
|
.sheet-layer4 input.sheet-dots2:checked ~ input.sheet-dots3,
|
|
.sheet-layer4 input.sheet-dots3:checked ~ input.sheet-dots4,
|
|
.sheet-layer4 input.sheet-dots4:checked ~ input.sheet-dots5,
|
|
.sheet-layer4 input.sheet-dots5:checked ~ input.sheet-dots6,
|
|
.sheet-layer4 input.sheet-dots6:checked ~ input.sheet-dots7,
|
|
.sheet-layer4 input.sheet-dots7:checked ~ input.sheet-dots8,
|
|
.sheet-layer4 input.sheet-dots8:checked ~ input.sheet-dots9,
|
|
.sheet-layer4 input.sheet-dots9:checked ~ input.sheet-dots10 { z-index: 6; }
|
|
.sheet-layer6 input.sheet-dots0:checked ~ input.sheet-dots1,
|
|
.sheet-layer6 input.sheet-dots1:checked ~ input.sheet-dots2,
|
|
.sheet-layer6 input.sheet-dots2:checked ~ input.sheet-dots3,
|
|
.sheet-layer6 input.sheet-dots3:checked ~ input.sheet-dots4,
|
|
.sheet-layer6 input.sheet-dots4:checked ~ input.sheet-dots5,
|
|
.sheet-layer6 input.sheet-dots5:checked ~ input.sheet-dots6,
|
|
.sheet-layer6 input.sheet-dots6:checked ~ input.sheet-dots7,
|
|
.sheet-layer6 input.sheet-dots7:checked ~ input.sheet-dots8,
|
|
.sheet-layer6 input.sheet-dots8:checked ~ input.sheet-dots9,
|
|
.sheet-layer6 input.sheet-dots9:checked ~ input.sheet-dots10 { z-index: 8; }
|
|
|
|
div.sheet-dots input.sheet-dots0:checked + span::before { content: url(http://i.imgur.com/brHawNF.png); }
|
|
div.sheet-dots input.sheet-dots1:checked + span::before { content: url(http://i.imgur.com/FxaE1ej.png); }
|
|
div.sheet-dots input.sheet-dots2:checked + span::before { content: url(http://i.imgur.com/mmaaeuA.png); }
|
|
div.sheet-dots input.sheet-dots3:checked + span::before { content: url(http://i.imgur.com/XzoEKTo.png); }
|
|
div.sheet-dots input.sheet-dots4:checked + span::before { content: url(http://i.imgur.com/7Km42YB.png); }
|
|
div.sheet-dots input.sheet-dots5:checked + span::before { content: url(http://i.imgur.com/fQOCs6f.png); }
|
|
div.sheet-dots input.sheet-dots6:checked + span::before { content: url(http://i.imgur.com/5viTRx5.png); }
|
|
div.sheet-dots input.sheet-dots7:checked + span::before { content: url(http://i.imgur.com/r51uCCA.png); }
|
|
div.sheet-dots input.sheet-dots8:checked + span::before { content: url(http://i.imgur.com/QlLZpUb.png); }
|
|
div.sheet-dots input.sheet-dots9:checked + span::before { content: url(http://i.imgur.com/mnoMk57.png); }
|
|
div.sheet-dots input.sheet-dots10:checked + span::before { content: url(http://i.imgur.com/jhxHSkd.png); }
|
|
|
|
div.sheet-dots-full input.sheet-dots0:checked + span::before { content: url(http://i.imgur.com/aoLkPUD.png); }
|
|
div.sheet-dots-full input.sheet-dots1:checked + span::before { content: url(http://i.imgur.com/yuMkIYx.png); }
|
|
div.sheet-dots-full input.sheet-dots2:checked + span::before { content: url(http://i.imgur.com/v8N22sh.png); }
|
|
div.sheet-dots-full input.sheet-dots3:checked + span::before { content: url(http://i.imgur.com/f4los8X.png); }
|
|
div.sheet-dots-full input.sheet-dots4:checked + span::before { content: url(http://i.imgur.com/JcMtOks.png); }
|
|
div.sheet-dots-full input.sheet-dots5:checked + span::before { content: url(http://i.imgur.com/b5t5pWv.png); }
|
|
div.sheet-dots-full input.sheet-dots6:checked + span::before { content: url(http://i.imgur.com/DrkRvoQ.png); }
|
|
div.sheet-dots-full input.sheet-dots7:checked + span::before { content: url(http://i.imgur.com/P8edx1p.png); }
|
|
div.sheet-dots-full input.sheet-dots8:checked + span::before { content: url(http://i.imgur.com/lJPrvey.png); }
|
|
div.sheet-dots-full input.sheet-dots9:checked + span::before { content: url(http://i.imgur.com/updBVIp.png); }
|
|
div.sheet-dots-full input.sheet-dots10:checked + span::before { content: url(http://i.imgur.com/1ymfexj.png); }
|
|
|
|
div.sheet-damage-box input.sheet-dots0:checked + span::before { content: url(http://i.imgur.com/HAiWBJU.png); }
|
|
div.sheet-damage-box input.sheet-dots1:checked + span::before { content: url(http://i.imgur.com/ZA7t2og.png); }
|
|
div.sheet-damage-box input.sheet-dots2:checked + span::before { content: url(http://i.imgur.com/Skkftsx.png); }
|
|
div.sheet-damage-box input.sheet-dots3:checked + span::before { content: url(http://i.imgur.com/WwEsO6c.png); }
|
|
|
|
input.sheet-dots0,
|
|
input[class^=sheet-dots]:checked + span + input { cursor: pointer; }
|
|
|
|
.sheet-temp-will { padding-left: 12px; }
|
|
.sheet-temp-will input,
|
|
.sheet-temp-will input + span {
|
|
margin-right: 9.75px;
|
|
}
|
|
.sheet-temp-will input:last-child,
|
|
.sheet-temp-will input:last-child + span {
|
|
margin: 0;
|
|
}
|
|
|
|
.sheet-health-track { text-align: center; }
|
|
|
|
.sheet-health-level {
|
|
display: inline-block;
|
|
width: 23.6px;
|
|
}
|
|
|
|
.sheet-health-level select {
|
|
width: 23px;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
text-indent: 4px;
|
|
text-overflow: '';
|
|
cursor: pointer;
|
|
font-weight: bolder;
|
|
font-family: Cimiez, Arial, sans-serif;
|
|
color: #d00;
|
|
height: 23px;
|
|
padding: 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.sheet-health-level select::-ms-expand { display: none; }
|
|
|
|
@font-face {
|
|
font-family: Cimiez;
|
|
src: local('Cimiez Roman PDF.ttf'),
|
|
url(http://lithl.info/cimiez.ttf) format('truetype');
|
|
}
|
|
|
|
/* Sheet head tabs */
|
|
|
|
div.sheet-tab-content {
|
|
display: none;
|
|
border-top:1px solid #ffffff;
|
|
margin-top:2px;
|
|
}
|
|
|
|
input.sheet-tab-character-sheet:checked ~ div.sheet-tab-character-sheet,
|
|
input.sheet-tab-spell-sheet:checked ~ div.sheet-tab-spell-sheet,
|
|
input.sheet-tab-charm-sheet:checked ~ div.sheet-tab-charm-sheet,
|
|
input.sheet-tab-settings-sheet:checked ~ div.sheet-tab-settings-sheet,
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
.sheet-quick-character[value="0"] ~ div.sheet-tab-character-sheet .sheet-qc-pools,
|
|
.sheet-quick-character[value="0"] ~ div.sheet-tab-character-sheet .sheet-qc-defenses,
|
|
.sheet-quick-character[value="0"] ~ div.sheet-tab-character-sheet .sheet-qc-health {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet > .sheet-attributes,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-abilities,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-limit,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-experience,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-gear,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-health-defenses,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-health-header,
|
|
.sheet-quick-character[value="1"] ~ div.sheet-tab-character-sheet .sheet-defenses {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-battle-group[value="0"] ~ div.sheet-tab-character-sheet .sheet-battle-group-header,
|
|
.sheet-battle-group[value="0"] ~ div.sheet-tab-character-sheet .sheet-battle-group-body {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-battle-group[value="1"] ~ div.sheet-tab-character-sheet > .sheet-health-track,
|
|
.sheet-battle-group[value="1"] ~ div.sheet-tab-character-sheet > .sheet-health-header,
|
|
.sheet-battle-group[value="1"] ~ div.sheet-tab-character-sheet h1.sheet-qc-health {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-tab {
|
|
width: 140px;
|
|
height: 30px;
|
|
-webkit-appearance:none;
|
|
-moz-appearance:none;
|
|
appearance:none;
|
|
border:none;
|
|
outline:none;
|
|
position: relative;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
input.sheet-tab::before {
|
|
content: attr(title);
|
|
|
|
border:1px solid #444;
|
|
border-top:0;
|
|
border-radius:0 0 10px 10px;
|
|
sheet-text-align: center;
|
|
display: block;
|
|
color:#444;
|
|
background:#fff;
|
|
width: 140px;
|
|
line-height: 30px;
|
|
font-size: 16px;
|
|
text-align:center
|
|
}
|
|
|
|
input.sheet-tab-charms::before,
|
|
input.sheet-tab-charms {
|
|
width: 80px;
|
|
}
|
|
|
|
input.sheet-tab-spells::before,
|
|
input.sheet-tab-spells {
|
|
width: 90px;
|
|
}
|
|
|
|
input.sheet-tab-settings::before,
|
|
input.sheet-tab-settings {
|
|
width: 30px;
|
|
font-family:Pictos;
|
|
}
|
|
|
|
input.sheet-tab:active,
|
|
input.sheet-tab:focus {
|
|
outline:none;
|
|
}
|
|
|
|
input.sheet-tab:hover::before {
|
|
background:#840000;
|
|
color: #FFDF00;
|
|
}
|
|
|
|
input.sheet-tab:checked::before,
|
|
input.sheet-tab:checked:hover::before {
|
|
background:#840000;
|
|
color: #FFDF00;
|
|
font-weight:bold;
|
|
}
|
|
|
|
/* Spell / Charm tabs */
|
|
|
|
div.sheet-charm-effect,
|
|
div.sheet-spell-effect {
|
|
display: none;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
input.sheet-charmeffect:checked ~ div.sheet-charm-effect,
|
|
input.sheet-spelleffect:checked ~ div.sheet-spell-effect {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-charmeffect,
|
|
input.sheet-spelleffect {
|
|
width:99%;
|
|
background-color: #f6f6f6;
|
|
height: 20px;
|
|
margin: 0;
|
|
}
|
|
|
|
input.sheet-charmeffect + span::before,
|
|
input.sheet-spelleffect + span::before {
|
|
width: 99%;
|
|
height: calc(100% - 3px);
|
|
content: attr(title);
|
|
text-align: center;
|
|
line-height: 100%;
|
|
font-size: 18px;
|
|
}
|
|
|
|
input.sheet-charmeffect:checked + span:before,
|
|
input.sheet-spelleffect:checked + span:before {
|
|
content: attr(title) !important;
|
|
}
|
|
|
|
.sheet-charms-spells-trait{
|
|
font-size: 12px;
|
|
}
|
|
|
|
input.sheet-charms-spells-trait{
|
|
height:20px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
button.sheet-roll{
|
|
height:30px;
|
|
width:50px;
|
|
font-size:18px !important;
|
|
font-weight:bold;
|
|
}
|
|
|
|
/* Roll Template */
|
|
|
|
.sheet-rolltemplate-exalted3e_cast table{
|
|
text-align:center;
|
|
background-color: #FFFFFF;
|
|
width:100%;
|
|
font-size:12px;
|
|
border-radius:10px;
|
|
border-collapse:separate;
|
|
border:1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast tr:last-child td{
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast td{
|
|
padding-top: 10px;
|
|
padding-left:10px;
|
|
padding-right:10px;
|
|
}
|
|
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-charm-name{
|
|
color:#0095c6;
|
|
font-size:20px;
|
|
font-family: Cimiez;
|
|
src: local('Cimiez Roman PDF.ttf'),
|
|
url(http://lithl.info/cimiez.ttf) format('truetype');
|
|
font-weight:bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-spell-name{
|
|
color:#9f0b10;
|
|
font-size:20px;
|
|
font-family: Cimiez;
|
|
src: local('Cimiez Roman PDF.ttf'),
|
|
url(http://lithl.info/cimiez.ttf) format('truetype');
|
|
font-weight:bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-subheader {
|
|
font-family: Cimiez;
|
|
src: local('Cimiez Roman PDF.ttf'),
|
|
url(http://lithl.info/cimiez.ttf) format('truetype');
|
|
font-size:18px;
|
|
padding-top:5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-info{
|
|
width:33%;
|
|
padding-bottom:5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-info:not(:first-child){
|
|
border-left: solid 1px #D3D3D3;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-desc{
|
|
background-color:#F5F5F5;
|
|
font-style: italic;
|
|
text-align:left;
|
|
padding-bottom:10px;
|
|
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast .sheet-effect{
|
|
background-color:#D3D3D3;
|
|
text-align:left;
|
|
padding-bottom:10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-exalted3e_cast span{
|
|
font-style:normal;
|
|
font-weight:bold;
|
|
font-size:15px;
|
|
}
|