mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
6340 lines
195 KiB
CSS
6340 lines
195 KiB
CSS
/* === VERSION === */
|
|
/* 1.8.0 */
|
|
|
|
/* === GENERAL === */
|
|
.charsheet {
|
|
min-width: 850px;
|
|
height: auto;
|
|
width: auto;
|
|
background: #dcdcdc;
|
|
}
|
|
|
|
.sheet-rotate90 {
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
.sheet-section {
|
|
float: left;
|
|
width: 100%;
|
|
margin: 4px 0;
|
|
padding: 1px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.sheet-half {
|
|
max-width: 50%;
|
|
}
|
|
|
|
.sheet-quarter {
|
|
max-width: 25%;
|
|
}
|
|
|
|
.sheet-3quarter {
|
|
max-width: 75%;
|
|
}
|
|
|
|
.sheet-break {
|
|
clear: both;
|
|
}
|
|
|
|
select { text-align-last:center; }
|
|
|
|
textarea {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 400px;
|
|
resize: vertical;
|
|
box-sizing: border-box;
|
|
background: #fcfcfc;
|
|
}
|
|
|
|
/* Section Overrides */
|
|
|
|
.sheet-header {
|
|
margin-bottom: 4px;
|
|
padding: 2px 4px;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.sheet-variable-header {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button.sheet-d6button[type=roll]::before{
|
|
font-family: 'dicefontd6';
|
|
content: "F " !important;
|
|
font-size: 24px;
|
|
}
|
|
|
|
button.sheet-d6button-large[type=roll]::before{
|
|
font-family: 'dicefontd6';
|
|
content: "F " !important;
|
|
font-size: 32px;
|
|
}
|
|
|
|
button[type=roll].sheet-hyperlink::before {
|
|
content: '';
|
|
}
|
|
|
|
.sheet-border{
|
|
border: 1px solid;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.sheet-padframe {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
input.sheet-dynamic {
|
|
opacity: 0;
|
|
float: left; }
|
|
|
|
input.sheet-dynamic:checked ~ div.sheet-body {
|
|
display: none; }
|
|
|
|
.sheet-font-bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
button.sheet-multi-select[type="action"] {
|
|
width: 85%;
|
|
height: 1.5em;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/*============= TABS =============*/
|
|
|
|
div.sheet-tab-content
|
|
|
|
{ display: none; }
|
|
|
|
|
|
/****************** Status Bars ******************/
|
|
|
|
div.sheet-social,
|
|
div.sheet-sanity,
|
|
div.sheet-energyspent,
|
|
div.sheet-health {
|
|
border-radius: 3px;
|
|
width: 98%;
|
|
color: black;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
}
|
|
|
|
/* Health */
|
|
input.sheet-health[value="10"] ~ div.sheet-health {
|
|
background: white;
|
|
}
|
|
input.sheet-health[value="10"] ~ div.sheet-health:before {
|
|
content:"Healthy";
|
|
}
|
|
input.sheet-health[value="9"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 90%, green 10%);
|
|
}
|
|
input.sheet-health[value="9"] ~ div.sheet-health:before {
|
|
content:"Lightly Wounded";
|
|
}
|
|
input.sheet-health[value="8"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 80%, green 20%);
|
|
}
|
|
input.sheet-health[value="8"] ~ div.sheet-health:before {
|
|
content:"Lightly Wounded";
|
|
}
|
|
input.sheet-health[value="7"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 70%, green 30%);
|
|
}
|
|
input.sheet-health[value="7"] ~ div.sheet-health:before {
|
|
content: "Lightly Wounded";
|
|
}
|
|
input.sheet-health[value="6"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 60%, yellow 40%);
|
|
}
|
|
input.sheet-health[value="6"] ~ div.sheet-health:before {
|
|
content: "Seriously Wounded";
|
|
}
|
|
input.sheet-health[value="5"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 50%, yellow 50%);
|
|
}
|
|
input.sheet-health[value="5"] ~ div.sheet-health:before {
|
|
content: "Seriously Wounded";
|
|
}
|
|
input.sheet-health[value="4"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 40%, yellow 60%);
|
|
}
|
|
input.sheet-health[value="4"] ~ div.sheet-health:before {
|
|
content: "Seriously Wounded";
|
|
}
|
|
input.sheet-health[value="3"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 30%, orange 70%);
|
|
}
|
|
input.sheet-health[value="3"] ~ div.sheet-health:before {
|
|
content: "Critically Wounded";
|
|
}
|
|
input.sheet-health[value="2"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 20%, orange 80%);
|
|
}
|
|
input.sheet-health[value="2"] ~ div.sheet-health:before {
|
|
content: "Critically Wounded";
|
|
}
|
|
input.sheet-health[value="1"] ~ div.sheet-health {
|
|
background: linear-gradient(to left, white 10%, orange 90%);
|
|
}
|
|
input.sheet-health[value="1"] ~ div.sheet-health:before {
|
|
content: "Critically Wounded";
|
|
}
|
|
input.sheet-health[value="0"] ~ div.sheet-health {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
input.sheet-health[value="0"] ~ div.sheet-health:before {
|
|
content: "Mortally Wounded";
|
|
}
|
|
|
|
/* Energy */
|
|
input.sheet-energyspent[value="10"] ~ div.sheet-energyspent {
|
|
background: white;
|
|
}
|
|
input.sheet-energyspent[value="10"] ~ div.sheet-energyspent:before {
|
|
content:"Rested";
|
|
}
|
|
input.sheet-energyspent[value="9"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 90%, green 10%);
|
|
}
|
|
input.sheet-energyspent[value="9"] ~ div.sheet-energyspent:before {
|
|
content:"Active";
|
|
}
|
|
input.sheet-energyspent[value="8"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 80%, green 20%);
|
|
}
|
|
input.sheet-energyspent[value="8"] ~ div.sheet-energyspent:before {
|
|
content:"Active";
|
|
}
|
|
input.sheet-energyspent[value="7"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 70%, green 30%);
|
|
}
|
|
input.sheet-energyspent[value="7"] ~ div.sheet-energyspent:before {
|
|
content: "Active";
|
|
}
|
|
input.sheet-energyspent[value="6"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 60%, yellow 40%);
|
|
}
|
|
input.sheet-energyspent[value="6"] ~ div.sheet-energyspent:before {
|
|
content: "Weary";
|
|
}
|
|
input.sheet-energyspent[value="5"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 50%, yellow 50%);
|
|
}
|
|
input.sheet-energyspent[value="5"] ~ div.sheet-energyspent:before {
|
|
content: "Weary";
|
|
}
|
|
input.sheet-energyspent[value="4"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 40%, yellow 60%);
|
|
}
|
|
input.sheet-energyspent[value="4"] ~ div.sheet-energyspent:before {
|
|
content: "Weary";
|
|
}
|
|
input.sheet-energyspent[value="3"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 30%, orange 70%);
|
|
}
|
|
input.sheet-energyspent[value="3"] ~ div.sheet-energyspent:before {
|
|
content: "Winded";
|
|
}
|
|
input.sheet-energyspent[value="2"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 20%, orange 80%);
|
|
}
|
|
input.sheet-energyspent[value="2"] ~ div.sheet-energyspent:before {
|
|
content: "Winded";
|
|
}
|
|
input.sheet-energyspent[value="1"] ~ div.sheet-energyspent {
|
|
background: linear-gradient(to left, white 10%, orange 90%);
|
|
}
|
|
input.sheet-energyspent[value="1"] ~ div.sheet-energyspent:before {
|
|
content: "Winded";
|
|
}
|
|
input.sheet-energyspent[value="0"] ~ div.sheet-energyspent {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
input.sheet-energyspent[value="0"] ~ div.sheet-energyspent:before {
|
|
content: "Exhausted";
|
|
}
|
|
|
|
/* Sanity */
|
|
input.sheet-sanity[value="10"] ~ div.sheet-sanity {
|
|
background: white;
|
|
}
|
|
input.sheet-sanity[value="10"] ~ div.sheet-sanity:before {
|
|
content:"Well";
|
|
}
|
|
input.sheet-sanity[value="9"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 90%, green 10%);
|
|
}
|
|
input.sheet-sanity[value="9"] ~ div.sheet-sanity:before {
|
|
content:"Unwell";
|
|
}
|
|
input.sheet-sanity[value="8"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 80%, green 20%);
|
|
}
|
|
input.sheet-sanity[value="8"] ~ div.sheet-sanity:before {
|
|
content:"Unwell";
|
|
}
|
|
input.sheet-sanity[value="7"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 70%, green 30%);
|
|
}
|
|
input.sheet-sanity[value="7"] ~ div.sheet-sanity:before {
|
|
content: "Unwell";
|
|
}
|
|
input.sheet-sanity[value="6"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 60%, yellow 40%);
|
|
}
|
|
input.sheet-sanity[value="6"] ~ div.sheet-sanity:before {
|
|
content: "Unstable";
|
|
}
|
|
input.sheet-sanity[value="5"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 50%, yellow 50%);
|
|
}
|
|
input.sheet-sanity[value="5"] ~ div.sheet-sanity:before {
|
|
content: "Unstable";
|
|
}
|
|
input.sheet-sanity[value="4"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 40%, yellow 60%);
|
|
}
|
|
input.sheet-sanity[value="4"] ~ div.sheet-sanity:before {
|
|
content: "Unstable";
|
|
}
|
|
input.sheet-sanity[value="3"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 30%, orange 70%);
|
|
}
|
|
input.sheet-sanity[value="3"] ~ div.sheet-sanity:before {
|
|
content: "Pathological";
|
|
}
|
|
input.sheet-sanity[value="2"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 20%, orange 80%);
|
|
}
|
|
input.sheet-sanity[value="2"] ~ div.sheet-sanity:before {
|
|
content: "Pathological";
|
|
}
|
|
input.sheet-sanity[value="1"] ~ div.sheet-sanity {
|
|
background: linear-gradient(to left, white 10%, orange 90%);
|
|
}
|
|
input.sheet-sanity[value="1"] ~ div.sheet-sanity:before {
|
|
content: "Pathological";
|
|
}
|
|
input.sheet-sanity[value="0"] ~ div.sheet-sanity {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
input.sheet-sanity[value="0"] ~ div.sheet-sanity:before {
|
|
content: "Insane";
|
|
}
|
|
|
|
/* Social */
|
|
input.sheet-social[value="10"] ~ div.sheet-social {
|
|
background: white;
|
|
}
|
|
input.sheet-social[value="10"] ~ div.sheet-social:before {
|
|
content:"Confident";
|
|
}
|
|
input.sheet-social[value="9"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 90%, green 10%);
|
|
}
|
|
input.sheet-social[value="9"] ~ div.sheet-social:before {
|
|
content:"Shaken";
|
|
}
|
|
input.sheet-social[value="8"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 80%, green 20%);
|
|
}
|
|
input.sheet-social[value="8"] ~ div.sheet-social:before {
|
|
content:"Shaken";
|
|
}
|
|
input.sheet-social[value="7"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 70%, green 30%);
|
|
}
|
|
input.sheet-social[value="7"] ~ div.sheet-social:before {
|
|
content: "Shaken";
|
|
}
|
|
input.sheet-social[value="6"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 60%, yellow 40%);
|
|
}
|
|
input.sheet-social[value="6"] ~ div.sheet-social:before {
|
|
content: "Unsure";
|
|
}
|
|
input.sheet-social[value="5"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 50%, yellow 50%);
|
|
}
|
|
input.sheet-social[value="5"] ~ div.sheet-social:before {
|
|
content: "Unsure";
|
|
}
|
|
input.sheet-social[value="4"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 40%, yellow 60%);
|
|
}
|
|
input.sheet-social[value="4"] ~ div.sheet-social:before {
|
|
content: "Unsure";
|
|
}
|
|
input.sheet-social[value="3"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 30%, orange 70%);
|
|
}
|
|
input.sheet-social[value="3"] ~ div.sheet-social:before {
|
|
content: "Insecure";
|
|
}
|
|
input.sheet-social[value="2"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 20%, orange 80%);
|
|
}
|
|
input.sheet-social[value="2"] ~ div.sheet-social:before {
|
|
content: "Insecure";
|
|
}
|
|
input.sheet-social[value="1"] ~ div.sheet-social {
|
|
background: linear-gradient(to left, white 10%, orange 90%);
|
|
}
|
|
input.sheet-social[value="1"] ~ div.sheet-social:before {
|
|
content: "Insecure";
|
|
}
|
|
input.sheet-social[value="0"] ~ div.sheet-social {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
input.sheet-social[value="0"] ~ div.sheet-social:before {
|
|
content: "Spiraling";
|
|
}
|
|
|
|
/* END status bar formatting */
|
|
|
|
.sheet-block-a,
|
|
.sheet-block-switch:checked ~ .sheet-block-b {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-block-b,
|
|
.sheet-block-switch:checked ~ .sheet-block-a {
|
|
display: none;
|
|
}
|
|
|
|
textarea.sheet-description {
|
|
height: 57px;
|
|
width: 100%;
|
|
}
|
|
|
|
input[name="attr_isflux"] {
|
|
opacity: 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
position: relative;
|
|
left: -9999px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
input[name="attr_armshanded_toggle"] {
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
|
|
input[name="attr_armsmainranged_toggle"] {
|
|
opacity: 0;
|
|
}
|
|
|
|
input[name="attr_armsoffranged_toggle"] {
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
input[name="attr_armshandedranged_toggle"] {
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
input[name*="poollevelelevation"],
|
|
input[name="attr_static_racetemplates_dropdown_state"]{
|
|
opacity: 0;
|
|
position: absolute;
|
|
left: -9999px;
|
|
cursor: pointer;
|
|
z-index: -9999;
|
|
}
|
|
|
|
input[name="attr_attrdefecttoggle"] {
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: -9999px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
.sheet-fontsize-12px >:first-child {
|
|
font-size: 12px;
|
|
}
|
|
|
|
|
|
.sheet-rolltemplate-initiative div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-initiative .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-initiative div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-combatvalue div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-combatvalue .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-combatvalue div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack .inlinerollresult {
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
text-align: center;
|
|
border: 2px solid rgba(167, 168, 170,1);
|
|
}
|
|
|
|
.sheet-rolltemplate-attack .inlinerollresult.fullcrit {
|
|
border: 2px solid #3FB315;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack .inlinerollresult.fullfail {
|
|
border: 2px solid #B31515;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack .inlinerollresult.importantroll {
|
|
border: 2px solid #4A57ED;
|
|
}
|
|
|
|
|
|
.sheet-rolltemplate-h2hattack div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-h2hattack .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-h2hattack div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-defend div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-defend .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-defend div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-defend .inlinerollresult {
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
text-align: center;
|
|
border: 2px solid rgba(167, 168, 170,1);
|
|
}
|
|
|
|
.sheet-rolltemplate-defend .inlinerollresult.fullcrit {
|
|
border: 2px solid #3FB315;
|
|
}
|
|
|
|
.sheet-rolltemplate-defend .inlinerollresult.fullfail {
|
|
border: 2px solid #B31515;
|
|
}
|
|
|
|
.sheet-rolltemplate-defend .inlinerollresult.importantroll {
|
|
border: 2px solid #4A57ED;
|
|
}
|
|
|
|
|
|
.sheet-rolltemplate-h2hdefend div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-h2hdefend .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-h2hdefend div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-rangeddefend div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-rangeddefend .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-rangeddefend div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-wounded div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-wounded .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-wounded div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-defended div.sheet-template-container {
|
|
border: 5px solid #c94c4c !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-defended .sheet-template-header {
|
|
background-color: #eea29a;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-defended div {
|
|
background-color: #eea29a;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-stunsave div.sheet-template-container {
|
|
border: 5px solid #86af49 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-stunsave .sheet-template-header {
|
|
background-color: #b5e7a0;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-stunsave div {
|
|
background-color: #b5e7a0;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-deathsave div.sheet-template-container {
|
|
border: 5px solid #86af49 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-deathsave .sheet-template-header {
|
|
background-color: #b5e7a0;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-deathsave div {
|
|
background-color: #b5e7a0;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-statroll div.sheet-template-container {
|
|
border: 5px solid #86af49 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-statroll .sheet-template-header {
|
|
background-color: #b5e7a0;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-statroll div {
|
|
background-color: #b5e7a0;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-skillroll div.sheet-template-container {
|
|
border: 5px solid #f2ae72 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-skillroll .sheet-template-header {
|
|
background-color: #f2e394;
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.sheet-rolltemplate-skillroll div {
|
|
background-color: #f2e394;
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
input.sheet-templateradio[type=radio]{
|
|
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: -999px
|
|
}
|
|
|
|
.sheet-template-padr {
|
|
padding-right: 98px;
|
|
}
|
|
|
|
/* Flux fake checkbox */
|
|
|
|
input.sheet-activate[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
margin-top: -35px;
|
|
margin-left: -18px;
|
|
}
|
|
|
|
input.sheet-activate[type="checkbox"] + span::before
|
|
{
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
font-family: "Pictos";
|
|
cursor: pointer;
|
|
position: absolute;
|
|
margin-right: 4px;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
content: "L";
|
|
font-size: 20px;
|
|
color: Grey;
|
|
margin-top: -13px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
input.sheet-activate[type="checkbox"]:checked + span::before
|
|
{
|
|
font-family: "Pictos";
|
|
content: "L";
|
|
color: Green;
|
|
}
|
|
|
|
/* END flux formatting */
|
|
|
|
span.sheet-targeted-inactive{
|
|
color: Black;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.sheet-tooltip {
|
|
outline: none;
|
|
cursor: help;
|
|
}
|
|
.sheet-tooltip strong { line-height: 30px; }
|
|
.sheet-tooltip:hover span.sheet-tooltip {
|
|
display: block;
|
|
position: absolute;
|
|
}
|
|
.sheet-tooltip:hover { text-decoration: none; }
|
|
.sheet-tooltip span.sheet-tooltip {
|
|
display: none;
|
|
border-radius: 4px;
|
|
box-shadow: 2px 2px 3px #ccc;
|
|
z-index: 10;
|
|
padding: 7px 10px;
|
|
margin-top: -30px;
|
|
margin-left: 28px;
|
|
width: 300px;
|
|
line-height: 16px;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.repcontrol[data-groupname="repeating_skill"] > .repcontrol_add,
|
|
input[class="templateradio"],
|
|
input[name="attr_damagetypeenable"],
|
|
input[name="attr_rollable"],
|
|
input[name="attr_visible"],
|
|
input[name="attr_static_attrgroup_1_static"],
|
|
input[name="attr_static_attrgroup_2_static"],
|
|
input[name="attr_static_attrgroup_3_static"],
|
|
input[name="attr_static_attrgroup_4_static"],
|
|
input[name="attr_static_attrgroup_5_static"],
|
|
input[name="attr_static_attrgroup_6_static"],
|
|
input[name="attr_static_attrgroup_7_static"],
|
|
input[name="attr_static_attrgroup_8_static"],
|
|
input[name="attr_static_attrgroup_9_static"],
|
|
input[name="attr_static_attrgroup_10_static"],
|
|
input[name="attr_static_attrgroup_1_dynamic"],
|
|
input[name="attr_static_attrgroup_2_dynamic"],
|
|
input[name="attr_static_attrgroup_3_dynamic"],
|
|
input[name="attr_static_attrgroup_4_dynamic"],
|
|
input[name="attr_static_attrgroup_5_dynamic"],
|
|
input[name="attr_static_attrgroup_6_dynamic"],
|
|
input[name="attr_static_attrgroup_7_dynamic"],
|
|
input[name="attr_static_attrgroup_8_dynamic"],
|
|
input[name="attr_static_attrgroup_9_dynamic"],
|
|
input[name="attr_static_attrgroup_10_dynamic"] {
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: -999px
|
|
}
|
|
|
|
.repcontrol[data-groupname="repeating_skilltemplate"] {
|
|
display: none;
|
|
}
|
|
|
|
span.sheet-dualwield-label {
|
|
position: relative;
|
|
margin-left: -16px;
|
|
left: -32%;
|
|
}
|
|
|
|
input.sheet-dualwield-checkbox:checked + span + div {
|
|
margin-bottom: 4px;
|
|
padding: 2px 4px;
|
|
background: grey;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
/*Configure the tab buttons*/
|
|
.sheet-skillgroup1,
|
|
.sheet-skillgroup2,
|
|
.sheet-skillgroup3,
|
|
.sheet-skillgroup4,
|
|
.sheet-skillgroup5,
|
|
.sheet-attrgroup1,
|
|
.sheet-attrgroup2,
|
|
.sheet-attrgroup3,
|
|
.sheet-attrgroup4,
|
|
.sheet-attrgroup5,
|
|
.sheet-attrgroup6,
|
|
.sheet-attrgroup7,
|
|
.sheet-attrgroup8,
|
|
.sheet-attrgroup9,
|
|
.sheet-attrgroup10 {
|
|
display: none;
|
|
}
|
|
|
|
/* show the selected tab */
|
|
.sheet-tabstoggle[value="attrgroup1"] ~ div.sheet-attrgroup1,
|
|
.sheet-tabstoggle[value="attrgroup2"] ~ div.sheet-attrgroup2,
|
|
.sheet-tabstoggle[value="attrgroup3"] ~ div.sheet-attrgroup3,
|
|
.sheet-tabstoggle[value="attrgroup4"] ~ div.sheet-attrgroup4,
|
|
.sheet-tabstoggle[value="attrgroup5"] ~ div.sheet-attrgroup5,
|
|
.sheet-tabstoggle[value="attrgroup6"] ~ div.sheet-attrgroup6,
|
|
.sheet-tabstoggle[value="attrgroup7"] ~ div.sheet-attrgroup7,
|
|
.sheet-tabstoggle[value="attrgroup8"] ~ div.sheet-attrgroup8,
|
|
.sheet-tabstoggle[value="attrgroup9"] ~ div.sheet-attrgroup9,
|
|
.sheet-tabstoggle[value="attrgroup10"] ~ div.sheet-attrgroup10 {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-skilltabstoggle[value="skillgroup1"] ~ div.sheet-skillgroup1,
|
|
.sheet-skilltabstoggle[value="skillgroup2"] ~ div.sheet-skillgroup2,
|
|
.sheet-skilltabstoggle[value="skillgroup3"] ~ div.sheet-skillgroup3,
|
|
.sheet-skilltabstoggle[value="skillgroup4"] ~ div.sheet-skillgroup4,
|
|
.sheet-skilltabstoggle[value="skillgroup5"] ~ div.sheet-skillgroup5 {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-defecttab1:checked ~ div.sheet-defecttab1,
|
|
input.sheet-defecttab2:checked ~ div.sheet-defecttab2,
|
|
input.sheet-defecttab3:checked ~ div.sheet-defecttab3 {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-enhancementtab1:checked ~ div.sheet-enhancementtab1,
|
|
input.sheet-enhancementtab2:checked ~ div.sheet-enhancementtab2,
|
|
input.sheet-enhancementtab3:checked ~ div.sheet-enhancementtab3,
|
|
input.sheet-enhancementtab4:checked ~ div.sheet-enhancementtab4,
|
|
input.sheet-enhancementtab5:checked ~ div.sheet-enhancementtab5,
|
|
input.sheet-enhancementtab6:checked ~ div.sheet-enhancementtab6,
|
|
input.sheet-enhancementtab7:checked ~ div.sheet-enhancementtab7,
|
|
input.sheet-enhancementtab8:checked ~ div.sheet-enhancementtab8,
|
|
input.sheet-enhancementtab9:checked ~ div.sheet-enhancementtab9,
|
|
input.sheet-enhancementtab10:checked ~ div.sheet-enhancementtab10,
|
|
input.sheet-enhancementtab11:checked ~ div.sheet-enhancementtab11,
|
|
input.sheet-enhancementtab12:checked ~ div.sheet-enhancementtab12,
|
|
input.sheet-enhancementtab13:checked ~ div.sheet-enhancementtab13,
|
|
input.sheet-enhancementtab14:checked ~ div.sheet-enhancementtab14,
|
|
input.sheet-enhancementtab15:checked ~ div.sheet-enhancementtab15,
|
|
input.sheet-enhancementtab16:checked ~ div.sheet-enhancementtab16,
|
|
input.sheet-enhancementtab17:checked ~ div.sheet-enhancementtab17,
|
|
input.sheet-enhancementtab18:checked ~ div.sheet-enhancementtab18,
|
|
input.sheet-enhancementtab19:checked ~ div.sheet-enhancementtab19,
|
|
input.sheet-enhancementtab20:checked ~ div.sheet-enhancementtab20,
|
|
input.sheet-enhancementtab21:checked ~ div.sheet-enhancementtab21,
|
|
input.sheet-enhancementtab22:checked ~ div.sheet-enhancementtab22,
|
|
input.sheet-enhancementtab23:checked ~ div.sheet-enhancementtab23,
|
|
input.sheet-enhancementtab24:checked ~ div.sheet-enhancementtab24,
|
|
input.sheet-enhancementtab25:checked ~ div.sheet-enhancementtab25,
|
|
input.sheet-enhancementtab26:checked ~ div.sheet-enhancementtab26,
|
|
input.sheet-enhancementtab27:checked ~ div.sheet-enhancementtab27,
|
|
input.sheet-enhancementtab28:checked ~ div.sheet-enhancementtab28,
|
|
input.sheet-enhancementtab29:checked ~ div.sheet-enhancementtab29,
|
|
input.sheet-enhancementtab30:checked ~ div.sheet-enhancementtab30,
|
|
input.sheet-enhancementtab31:checked ~ div.sheet-enhancementtab31,
|
|
input.sheet-enhancementtab32:checked ~ div.sheet-enhancementtab32,
|
|
input.sheet-enhancementtab33:checked ~ div.sheet-enhancementtab33,
|
|
input.sheet-enhancementtab34:checked ~ div.sheet-enhancementtab34,
|
|
input.sheet-enhancementtab35:checked ~ div.sheet-enhancementtab35,
|
|
input.sheet-enhancementtab36:checked ~ div.sheet-enhancementtab36,
|
|
input.sheet-enhancementtab37:checked ~ div.sheet-enhancementtab37,
|
|
input.sheet-enhancementtab38:checked ~ div.sheet-enhancementtab38,
|
|
input.sheet-enhancementtab39:checked ~ div.sheet-enhancementtab39,
|
|
input.sheet-enhancementtab40:checked ~ div.sheet-enhancementtab40
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-limitertab1:checked ~ div.sheet-limitertab1,
|
|
input.sheet-limitertab2:checked ~ div.sheet-limitertab2,
|
|
input.sheet-limitertab3:checked ~ div.sheet-limitertab3,
|
|
input.sheet-limitertab4:checked ~ div.sheet-limitertab4,
|
|
input.sheet-limitertab5:checked ~ div.sheet-limitertab5,
|
|
input.sheet-limitertab6:checked ~ div.sheet-limitertab6,
|
|
input.sheet-limitertab7:checked ~ div.sheet-limitertab7,
|
|
input.sheet-limitertab8:checked ~ div.sheet-limitertab8,
|
|
input.sheet-limitertab9:checked ~ div.sheet-limitertab9,
|
|
input.sheet-limitertab10:checked ~ div.sheet-limitertab10,
|
|
input.sheet-limitertab11:checked ~ div.sheet-limitertab11,
|
|
input.sheet-limitertab12:checked ~ div.sheet-limitertab12,
|
|
input.sheet-limitertab13:checked ~ div.sheet-limitertab13,
|
|
input.sheet-limitertab14:checked ~ div.sheet-limitertab14,
|
|
input.sheet-limitertab15:checked ~ div.sheet-limitertab15,
|
|
input.sheet-limitertab16:checked ~ div.sheet-limitertab16,
|
|
input.sheet-limitertab17:checked ~ div.sheet-limitertab17,
|
|
input.sheet-limitertab18:checked ~ div.sheet-limitertab18,
|
|
input.sheet-limitertab19:checked ~ div.sheet-limitertab19,
|
|
input.sheet-limitertab20:checked ~ div.sheet-limitertab20,
|
|
input.sheet-limitertab21:checked ~ div.sheet-limitertab21,
|
|
input.sheet-limitertab22:checked ~ div.sheet-limitertab22,
|
|
input.sheet-limitertab23:checked ~ div.sheet-limitertab23,
|
|
input.sheet-limitertab24:checked ~ div.sheet-limitertab24,
|
|
input.sheet-limitertab25:checked ~ div.sheet-limitertab25,
|
|
input.sheet-limitertab26:checked ~ div.sheet-limitertab26,
|
|
input.sheet-limitertab27:checked ~ div.sheet-limitertab27,
|
|
input.sheet-limitertab28:checked ~ div.sheet-limitertab28,
|
|
input.sheet-limitertab29:checked ~ div.sheet-limitertab29,
|
|
input.sheet-limitertab30:checked ~ div.sheet-limitertab30,
|
|
input.sheet-limitertab31:checked ~ div.sheet-limitertab31,
|
|
input.sheet-limitertab32:checked ~ div.sheet-limitertab32,
|
|
input.sheet-limitertab33:checked ~ div.sheet-limitertab33,
|
|
input.sheet-limitertab34:checked ~ div.sheet-limitertab34,
|
|
input.sheet-limitertab35:checked ~ div.sheet-limitertab35,
|
|
input.sheet-limitertab36:checked ~ div.sheet-limitertab36,
|
|
input.sheet-limitertab37:checked ~ div.sheet-limitertab37,
|
|
input.sheet-limitertab38:checked ~ div.sheet-limitertab38,
|
|
input.sheet-limitertab39:checked ~ div.sheet-limitertab39,
|
|
input.sheet-limitertab40:checked ~ div.sheet-limitertab40
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-rolltab1:checked ~ div.sheet-rolltab1,
|
|
input.sheet-rolltab2:checked ~ div.sheet-rolltab2,
|
|
input.sheet-rolltab3:checked ~ div.sheet-rolltab3,
|
|
input.sheet-rolltab4:checked ~ div.sheet-rolltab4,
|
|
input.sheet-rolltab5:checked ~ div.sheet-rolltab5,
|
|
input.sheet-rolltab6:checked ~ div.sheet-rolltab6 {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-enhancedsighttab1:checked ~ div.sheet-enhancedsighttab1,
|
|
input.sheet-enhancedsighttab2:checked ~ div.sheet-enhancedsighttab2,
|
|
input.sheet-enhancedsighttab3:checked ~ div.sheet-enhancedsighttab3,
|
|
input.sheet-enhancedsighttab4:checked ~ div.sheet-enhancedsighttab4,
|
|
input.sheet-enhancedsighttab5:checked ~ div.sheet-enhancedsighttab5,
|
|
input.sheet-enhancedsighttab6:checked ~ div.sheet-enhancedsighttab6,
|
|
input.sheet-enhancedhearingtab1:checked ~ div.sheet-enhancedhearingtab1,
|
|
input.sheet-enhancedhearingtab2:checked ~ div.sheet-enhancedhearingtab2,
|
|
input.sheet-enhancedhearingtab3:checked ~ div.sheet-enhancedhearingtab3,
|
|
input.sheet-enhancedhearingtab4:checked ~ div.sheet-enhancedhearingtab4,
|
|
input.sheet-enhancedhearingtab5:checked ~ div.sheet-enhancedhearingtab5,
|
|
input.sheet-enhancedhearingtab6:checked ~ div.sheet-enhancedhearingtab6,
|
|
input.sheet-enhancedtouchtab1:checked ~ div.sheet-enhancedtouchtab1,
|
|
input.sheet-enhancedtouchtab2:checked ~ div.sheet-enhancedtouchtab2,
|
|
input.sheet-enhancedtouchtab3:checked ~ div.sheet-enhancedtouchtab3,
|
|
input.sheet-enhancedtouchtab4:checked ~ div.sheet-enhancedtouchtab4,
|
|
input.sheet-enhancedtouchtab5:checked ~ div.sheet-enhancedtouchtab5,
|
|
input.sheet-enhancedtouchtab6:checked ~ div.sheet-enhancedtouchtab6,
|
|
input.sheet-enhancedsmelltab1:checked ~ div.sheet-enhancedsmelltab1,
|
|
input.sheet-enhancedsmelltab2:checked ~ div.sheet-enhancedsmelltab2,
|
|
input.sheet-enhancedsmelltab3:checked ~ div.sheet-enhancedsmelltab3,
|
|
input.sheet-enhancedsmelltab4:checked ~ div.sheet-enhancedsmelltab4,
|
|
input.sheet-enhancedsmelltab5:checked ~ div.sheet-enhancedsmelltab5,
|
|
input.sheet-enhancedsmelltab6:checked ~ div.sheet-enhancedsmelltab6,
|
|
input.sheet-enhancedtastetab1:checked ~ div.sheet-enhancedtastetab1,
|
|
input.sheet-enhancedtastetab2:checked ~ div.sheet-enhancedtastetab2,
|
|
input.sheet-enhancedtastetab3:checked ~ div.sheet-enhancedtastetab3,
|
|
input.sheet-enhancedtastetab4:checked ~ div.sheet-enhancedtastetab4,
|
|
input.sheet-enhancedtastetab5:checked ~ div.sheet-enhancedtastetab5,
|
|
input.sheet-enhancedtastetab6:checked ~ div.sheet-enhancedtastetab6 {
|
|
display: block;
|
|
}
|
|
|
|
select.sheet-hidden,
|
|
input.sheet-enhancedtastetab,
|
|
input.sheet-enhancedsmelltab,
|
|
input.sheet-enhancedtouchtab,
|
|
input.sheet-enhancedhearingtab,
|
|
input.sheet-enhancedsighttab,
|
|
input.sheet-rolltab,
|
|
input.sheet-tooltips,
|
|
input.sheet-theme,
|
|
input.sheet-activate,
|
|
input.sheet-lock,
|
|
input.sheet-templates,
|
|
input.sheet-enhancementtab,
|
|
input.sheet-limitertab{
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: -999px
|
|
}
|
|
|
|
/***************** Themes *****************/
|
|
|
|
/* Titles */
|
|
input.sheet-theme[value="1"]:checked ~ div,
|
|
input.sheet-theme[value="1"]:checked ~ div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
|
|
background: #c94c4c;
|
|
border-width: 3px;
|
|
border-color: #c94c4c;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="2"]:checked ~ div,
|
|
input.sheet-theme[value="2"]:checked ~ div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #ED7D31;
|
|
border-width: 3px;
|
|
border-color: #ED7D31;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="3"]:checked ~ div,
|
|
input.sheet-theme[value="3"]:checked ~ div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #FFC000;
|
|
border-width: 3px;
|
|
border-color: #FFC000;
|
|
color: #333333;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="4"]:checked ~ div,
|
|
input.sheet-theme[value="4"]:checked ~ div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #70AD47;
|
|
border-width: 3px;
|
|
border-color: #70AD47;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="5"]:checked ~ div,
|
|
input.sheet-theme[value="5"]:checked ~ div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #4472C4;
|
|
border-width: 3px;
|
|
border-color: #4472C4;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="6"]:checked ~ div,
|
|
input.sheet-theme[value="6"]:checked ~ div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #7030A0;
|
|
border-width: 3px;
|
|
border-color: #7030A0;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="7"]:checked ~ div,
|
|
input.sheet-theme[value="7"]:checked ~ div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #767171;
|
|
border-width: 3px;
|
|
border-color: #767171;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="8"]:checked ~ div,
|
|
input.sheet-theme[value="8"]:checked ~ div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #0D0D0D;
|
|
border-width: 3px;
|
|
border-color: #0D0D0D;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
input.sheet-theme[value="9"]:checked ~ div,
|
|
input.sheet-theme[value="9"]:checked ~ div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > h3
|
|
{
|
|
margin: auto;
|
|
background: #BFBFBF;
|
|
border-width: 3px;
|
|
border-color: #BFBFBF;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Background */
|
|
input.sheet-theme[value="1"]:checked ~ div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #eea29a;
|
|
border-width: 1px;
|
|
border-color: #c94c4c;
|
|
}
|
|
input.sheet-theme[value="2"]:checked ~ div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #F8CBAD;
|
|
border-width: 1px;
|
|
border-color: #ED7D31;
|
|
}
|
|
input.sheet-theme[value="3"]:checked ~ div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #FFE699;
|
|
border-width: 1px;
|
|
border-color: #FFC000;
|
|
}
|
|
input.sheet-theme[value="4"]:checked ~ div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #C5E0B4;
|
|
border-width: 1px;
|
|
border-color: #70AD47;
|
|
}
|
|
input.sheet-theme[value="5"]:checked ~ div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #B4C7E7;
|
|
border-width: 1px;
|
|
border-color: #4472C4;
|
|
}
|
|
input.sheet-theme[value="6"]:checked ~ div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #BD92DE;
|
|
border-width: 1px;
|
|
border-color: #7030A0;
|
|
}
|
|
input.sheet-theme[value="7"]:checked ~ div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #D0CECE;
|
|
border-width: 1px;
|
|
border-color: #767171;
|
|
}
|
|
input.sheet-theme[value="8"]:checked ~ div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #7F7F7F;
|
|
border-width: 1px;
|
|
border-color: #0D0D0D;
|
|
}
|
|
input.sheet-theme[value="9"]:checked ~ div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h5 > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div
|
|
{
|
|
background: #F2F2F2;
|
|
border-width: 1px;
|
|
border-color: #BFBFBF;
|
|
}
|
|
|
|
/* Action Buttons */
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #d77979;
|
|
border-width: 1px;
|
|
border-color: #c94c4c;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #F4B183;
|
|
border-width: 1px;
|
|
border-color: #ED7D31;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #FFD966;
|
|
border-width: 1px;
|
|
border-color: #FFC000;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #A9D18E;
|
|
border-width: 1px;
|
|
border-color: #70AD47;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #8FAADC;
|
|
border-width: 1px;
|
|
border-color: #4472C4;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #A162D0;
|
|
border-width: 1px;
|
|
border-color: #7030A0;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #AFABAB;
|
|
border-width: 1px;
|
|
border-color: #767171;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #595959;
|
|
border-width: 1px;
|
|
border-color: #0D0D0D;
|
|
color: #F2F2F2;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h5 > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > span,
|
|
/*Skill Template Tooltip*/
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > h3 > div > div > div > div > h3 > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h5 > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > span,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > div > div > div > div,
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > span > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > h4 > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > div > button[type="action"]
|
|
{
|
|
background: #D9D9D9;
|
|
border-width: 1px;
|
|
border-color: #BFBFBF;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
/* Roll Buttons */
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="1"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #c94c4c;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="2"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #ED7D31;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="3"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #FFC000;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="4"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #70AD47;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #333333;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="5"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #4472C4;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="6"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #7030A0;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="7"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #767171;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="8"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #0D0D0D;
|
|
border-width: 1px;
|
|
border-color: #000;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > h5 > div > div > div > div > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > h4 > span > div > div > button[type="roll"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > h4 > div > div > div > div > div > div > div > div > div > div > button[type="action"],
|
|
input.sheet-theme[value="9"]:checked ~ div > div > div > div > div > div > div > div > div > h4 > div > div > button[type="roll"]
|
|
{
|
|
background: #BFBFBF;
|
|
border-width: 1px;
|
|
border-color: #7F7F7F;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
span.sheet-targeted-damage-active {
|
|
text-align: center;
|
|
content: 't';
|
|
}
|
|
|
|
span.sheet-targeted-damage-deactivated {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: black;
|
|
content: 't';
|
|
}
|
|
|
|
span.sheet-targeted-attack-active {
|
|
text-align: center;
|
|
content: ']';
|
|
}
|
|
|
|
span.sheet-targeted-attack-deactivated {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: black;
|
|
content: ']';
|
|
}
|
|
|
|
span.sheet-targeted-defense-active {
|
|
text-align: center;
|
|
content: 'e';
|
|
}
|
|
|
|
span.sheet-targeted-defense-deactivated {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: black;
|
|
content: 'e';
|
|
}
|
|
|
|
span.sheet-activate-button {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
content: 'Q';
|
|
}
|
|
|
|
span.sheet-deactivated {
|
|
text-align: center;
|
|
display: inline-block;
|
|
font-size: 24px;
|
|
color: black;
|
|
content: 'Q';
|
|
}
|
|
|
|
.sheet-theme-red,
|
|
.sheet-theme-orange,
|
|
.sheet-theme-yellow,
|
|
.sheet-theme-green,
|
|
.sheet-theme-blue,
|
|
.sheet-theme-purple,
|
|
.sheet-theme-grey,
|
|
.sheet-theme-dark,
|
|
.sheet-theme-light {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-targeted[value="1"] + button.sheet-targeted > span.sheet-theme-red,
|
|
input.sheet-activate[value="1"] + button.sheet-activate > span.sheet-theme-red {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #e00004;
|
|
}
|
|
input.sheet-targeted[value="2"] + button.sheet-targeted > span.sheet-theme-orange,
|
|
input.sheet-activate[value="2"] + button.sheet-activate > span.sheet-theme-orange {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #FF6B00;
|
|
}
|
|
input.sheet-targeted[value="3"] + button.sheet-targeted > span.sheet-theme-yellow,
|
|
input.sheet-activate[value="3"] + button.sheet-activate > span.sheet-theme-yellow {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #e4a207;
|
|
}
|
|
input.sheet-targeted[value="4"] + button.sheet-targeted > span.sheet-theme-green,
|
|
input.sheet-activate[value="4"] + button.sheet-activate > span.sheet-theme-green {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #19af1e;
|
|
}
|
|
input.sheet-targeted[value="5"] + button.sheet-targeted > span.sheet-theme-blue,
|
|
input.sheet-activate[value="5"] + button.sheet-activate > span.sheet-theme-blue {
|
|
text-align: center;
|
|
display: inline-block;;
|
|
color: #065ee2;
|
|
}
|
|
input.sheet-targeted[value="6"] + button.sheet-targeted > span.sheet-theme-purple,
|
|
input.sheet-activate[value="6"] + button.sheet-activate > span.sheet-theme-purple {
|
|
text-align: center;
|
|
display: inline-block;;
|
|
color: #7800f0;
|
|
}
|
|
input.sheet-targeted[value="7"] + button.sheet-targeted > span.sheet-theme-grey,
|
|
input.sheet-activate[value="7"] + button.sheet-activate > span.sheet-theme-grey {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #666666;
|
|
}
|
|
input.sheet-targeted[value="8"] + button.sheet-targeted > span.sheet-theme-dark,
|
|
input.sheet-activate[value="8"] + button.sheet-activate > span.sheet-theme-dark {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #ad0101;
|
|
}
|
|
input.sheet-targeted[value="9"] + button.sheet-targeted > span.sheet-theme-light,
|
|
input.sheet-activate[value="9"] + button.sheet-activate > span.sheet-theme-light {
|
|
text-align: center;
|
|
display: inline-block;
|
|
color: #7F7F7F;
|
|
}
|
|
|
|
/* Hide actual checkbox */
|
|
input.sheet-lock[type="checkbox"],
|
|
input.sheet-activate[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 2px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Fake checkbox */
|
|
input.sheet-lock[type="checkbox"] + span::before
|
|
{
|
|
margin-right: 4px;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 16px;
|
|
height: 16px;
|
|
font-size: 24px;
|
|
font-family: pictos;
|
|
color: black;
|
|
content: ')';
|
|
}
|
|
input.sheet-lock[type="checkbox"]:checked + span::before
|
|
{
|
|
font-family: pictos;
|
|
content: '(';
|
|
}
|
|
|
|
input.sheet-activate[type="checkbox"] + span::before
|
|
{
|
|
margin-right: 4px;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: .6em 0 0 .5em;
|
|
font-size: 24px;
|
|
font-family: pictos;
|
|
color: black;
|
|
content: 'Q';
|
|
}
|
|
input.sheet-activate[type="checkbox"]:checked .sheet-theme[value="1"]:checked + span::before
|
|
{
|
|
font-family: pictos;
|
|
color: red;
|
|
content: 'Q';
|
|
}
|
|
|
|
span.sheet-protection {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
margin-bottom: -12px;
|
|
}
|
|
|
|
input.sheet-protection {
|
|
text-align: center;
|
|
}
|
|
|
|
button.sheet-condition[type="action"] {
|
|
width: 77%;
|
|
padding: 12px;
|
|
}
|
|
|
|
button.sheet-weapon[type="action"] {
|
|
width: 95%;
|
|
}
|
|
|
|
button.sheet-allaspects-stat-inactive[type="action"],
|
|
button.sheet-allaspects-stat[type="action"],
|
|
button.sheet-major-stat[type="action"] {
|
|
width: 60%;
|
|
height: 3.5em;
|
|
}
|
|
|
|
button.sheet-activated,
|
|
input.sheet-targeted[value="1"] ~ button.sheet-targeted,
|
|
input.sheet-push-button:checked + button.sheet-condition,
|
|
input.sheet-push-button:checked + button.sheet-multi-select,
|
|
input.sheet-protectionstate:checked + h4.sheet-protection,
|
|
input.sheet-targeted:checked + button.sheet-targeted,
|
|
input.sheet-weapon:checked + button.sheet-weapon,
|
|
input.sheet-stats:checked + button.sheet-allaspects-stat,
|
|
input.sheet-stats:checked + button.sheet-major-stat {
|
|
-webkit-box-shadow: inset 0px 0px 5px;
|
|
-moz-box-shadow: inset 0px 0px 5px;
|
|
box-shadow: inset 0px 0px 5px;
|
|
outline: none;
|
|
}
|
|
|
|
button.sheet-allaspects-stat-inactive[type="action"],
|
|
button.sheet-push-button[type="action"],
|
|
h4.sheet-protection {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
input.sheet-protectionstate:checked + h4.sheet-protection,
|
|
input.sheet-push-button:checked + button.sheet-push-button {
|
|
opacity: 1;
|
|
}
|
|
|
|
input.sheet-block-switch,
|
|
input.sheet-stats,
|
|
input.sheet-weapon,
|
|
input.sheet-protectionstate,
|
|
input.sheet-push-button {
|
|
opacity: 0;
|
|
left: -9999px;
|
|
position: absolute;
|
|
}
|
|
|
|
/* END button state formatting */
|
|
|
|
div.sheet-flex-container {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
div.sheet-flex-container-evenlyspace {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
flex-flow: row nowrap;
|
|
align-content: space-around;
|
|
}
|
|
|
|
div.sheet-flex-container-wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-flow: row wrap;
|
|
align-content: space-around;
|
|
gap: 3px;
|
|
}
|
|
|
|
div.sheet-flex-container-spacearound {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-flow: row nowrap;
|
|
align-content: space-around;
|
|
}
|
|
|
|
div.sheet-flex-container-column {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
align-content: space-around;
|
|
}
|
|
|
|
div.sheet-flex-container-right {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: flex-start;
|
|
align-content: space-between;
|
|
}
|
|
|
|
div.sheet-flex-container-wrap {
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
align-content: space-around;
|
|
}
|
|
|
|
div.sheet-flex-grow {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
div.sheet-flex-skillcontainer {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.sheet-flex-1 {
|
|
flex: 0 1 100%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-2 {
|
|
flex: 0 1 50%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-9-20 {
|
|
flex: 0 1 45%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-4-9 {
|
|
flex: 0 1 44.44444%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-5-14 {
|
|
flex: 0 1 35.71429%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-6-17 {
|
|
flex: 0 1 35.29412%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-3 {
|
|
flex: 0 1 33.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-7 {
|
|
flex: 0 1 28.57143%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-4 {
|
|
flex: 0 1 25%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-5 {
|
|
flex: 0 1 20%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-6 {
|
|
flex: 0 1 16.66667%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-13 {
|
|
flex: 0 1 15.3846%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-7 {
|
|
flex: 0 1 14.28571%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-8 {
|
|
flex: 0 1 12.5%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-9 {
|
|
flex: 0 1 11.11111%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-10 {
|
|
flex: 0 1 10%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flexstart-1-10 {
|
|
flex: 0 1 10%;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.sheet-flex-1-12 {
|
|
flex: 0 1 8.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-13 {
|
|
flex: 0 1 7.69231%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-15 {
|
|
flex: 0 1 6.66667%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-16 {
|
|
flex: 0 1 6.25%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-18 {
|
|
flex: 0 1 5.55556%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-20 {
|
|
flex: 0 1 5%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-1-24 {
|
|
flex: 0 1 4.16667%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-4-23 {
|
|
flex: 0 1 17.3913%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-11 {
|
|
flex: 0 1 18.18182%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-3-16 {
|
|
flex: 0 1 18.75%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-10 {
|
|
flex: 0 1 20%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-9 {
|
|
flex: 0 1 22.22222%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-4-17 {
|
|
flex: 0 1 23.52941%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-3-10 {
|
|
flex: 0 1 30%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-3-8 {
|
|
flex: 0 1 37.5%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-5 {
|
|
flex: 0 1 40%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-4-10 {
|
|
flex: 0 1 40%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-5-12 {
|
|
flex: 0 1 41.66667%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-9-20 {
|
|
flex: 0 1 45%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-8-15 {
|
|
flex: 0 1 53.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-11-20 {
|
|
flex: 0 1 55%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-7-12 {
|
|
flex: 0 1 58.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-3-5 {
|
|
flex: 0 1 60%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-6-10 {
|
|
flex: 0 1 60%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-13-20 {
|
|
flex: 0 1 65%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-2-3 {
|
|
flex: 0 1 66.66667%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-7-10 {
|
|
flex: 0 1 70%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-11-15 {
|
|
flex: 0 1 73.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-3-4 {
|
|
flex: 0 1 75%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-4-5 {
|
|
flex: 0 1 80%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-13-16 {
|
|
flex: 0 1 81.25%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-5-6 {
|
|
flex: 0 1 83.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-6-7 {
|
|
flex: 0 1 85.71429%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-8-9 {
|
|
flex: 0 1 88.88889%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-9-10 {
|
|
flex: 0 1 90%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-11-12 {
|
|
flex: 0 1 91.66667%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-12-13 {
|
|
flex: 0 1 92.30769%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-14-15 {
|
|
flex: 0 1 93.33333%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-19-20 {
|
|
flex: 0 1 95%;
|
|
align-self: center;
|
|
}
|
|
|
|
.sheet-flex-center {
|
|
align-items: center;
|
|
}
|
|
div.sheet-flex-skillchild-button {
|
|
flex: 0 1 7%;
|
|
align-self: center;
|
|
}
|
|
|
|
/***************** New CSS *****************/
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-card {
|
|
width: 95%;
|
|
background-color: #FFFFFF;
|
|
font-size: 11px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
border: black 1px solid;
|
|
padding: 5px 0px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
/* Generic header */
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header {
|
|
text-align: center;
|
|
position: relative;
|
|
color: #000;
|
|
margin: 0 -10px 10px -10px;
|
|
padding: 5px 0;
|
|
background-color: #5c5c5c;
|
|
background-image: linear-gradient(rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
|
|
-moz-box-shadow: 0 2px 0 rgba(0, 0, 0, .3);
|
|
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, .3);
|
|
box-shadow: 0 2px 0 rgba(0, 0, 0, .3);
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header:before,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header:after {
|
|
content: '';
|
|
position: absolute;
|
|
border-style: solid;
|
|
border-color: transparent;
|
|
bottom: -10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header:before {
|
|
border-width: 0 10px 10px 0;
|
|
border-right-color: #222;
|
|
left: 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header:after {
|
|
border-width: 0 0 10px 10px;
|
|
border-left-color: #222;
|
|
right: 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-title {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-subheader {}
|
|
|
|
|
|
/* Melee header*/
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-weapon,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-attack
|
|
{
|
|
background-color: #2C5D28;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-weapon:before,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-attack:before
|
|
{
|
|
border-right-color: #375035;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-weapon:after,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-attack:after
|
|
{
|
|
border-left-color: #375035;
|
|
}
|
|
|
|
|
|
/* Spell header */
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-spell,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-defense
|
|
{
|
|
background-color: #45285D;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-spell:before,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-defense:before
|
|
{
|
|
border-right-color: #443550;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-spell:after,
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-defense:after
|
|
{
|
|
border-left-color: #443550;
|
|
}
|
|
|
|
|
|
/* Ability check header */
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-ability {
|
|
background-color: #28595D;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-ability:before {
|
|
border-right-color: #354E50;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-ability:after {
|
|
border-left-color: #354E50;
|
|
}
|
|
|
|
|
|
/* Saving throw header */
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-rolls {
|
|
background-color: #5D2828;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-rolls:before {
|
|
border-right-color: #503535;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-rolls:after {
|
|
border-left-color: #503535;
|
|
}
|
|
|
|
|
|
/* Death Save header */
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-deathsave {
|
|
background-color: #240F0F;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-deathsave:before {
|
|
border-right-color: #1F1414;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-header.sheet-deathsave:after {
|
|
border-left-color: #1F1414;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-key {
|
|
font-weight: bold;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 1.1em;
|
|
-moz-text-decoration-color: #D64541;
|
|
text-decoration-color: #D64541;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
max-width: 120px;
|
|
padding: 2px 2px 2px 0px;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-key-wide {
|
|
font-weight: bold;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 1.1em;
|
|
-moz-text-decoration-color: #D64541;
|
|
text-decoration-color: #D64541;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding: 2px 2px 2px 0px
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-value {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-ignored-roll .inlinerollresult {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-no-roll-highlight .inlinerollresult {
|
|
background-color: inherit;
|
|
border: 0;
|
|
padding: 0;
|
|
font-weight: normal;
|
|
cursor: help;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-value .sheet-no-roll-highlight .inlinerollresult .fullfail . .sheet-rolltemplate-besmDefault .sheet-rt-value .sheet-no-roll-highlight .inlinerollresult .fullcrit {
|
|
border: 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-main-content {}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-main-content hr.sheet-roll {
|
|
width: 80%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: #D64541;
|
|
background-color: #D64541;
|
|
height: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-rt-emote {
|
|
font-style: italic;
|
|
font-size: 11px;
|
|
font-family: Arial;
|
|
text-align: center;
|
|
border: green 1px dashed;
|
|
border-radius: 5px;
|
|
padding: 0px 5px;
|
|
margin: 0px 5px 5px 5px;
|
|
}
|
|
|
|
|
|
/*** ROLL TEMPLATE STYLING ENDS HERE **/
|
|
|
|
|
|
/* overall wrapper to fix moving width issues with overflow on hidden sections */
|
|
|
|
.sheet-overall-wrapper {
|
|
max-width: 832px;
|
|
}
|
|
|
|
|
|
/* Tweak repeating section buttons so they have a bottom margin and dont overflow when in edit mode. */
|
|
|
|
div[class^="repcontrol"] {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
div[class="repcontainer editmode"] ~ div[class^="repcontrol"] button[class="btn repcontrol_add"] {
|
|
display: inline-block!important;
|
|
visibility: hidden;
|
|
}
|
|
|
|
|
|
/* player/npc button Settings */
|
|
|
|
div.sheet-player,
|
|
div.sheet-npc {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-is-npc:checked ~ div.sheet-npc,
|
|
input.sheet-is-npc:not(:checked)~ div.sheet-player {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-is-npc {
|
|
width: 20%;
|
|
height: 16px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
}
|
|
|
|
span.sheet-is-npc-tab::before {
|
|
content: "Player Sheet";
|
|
}
|
|
|
|
span.sheet-is-npc-tab {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 20%;
|
|
height: 16px;
|
|
font-size: 9px;
|
|
background: #65763c;
|
|
color: white;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
margin-left: -20%
|
|
}
|
|
|
|
input.sheet-is-npc:checked + span.sheet-is-npc-tab {
|
|
background: #93537c;
|
|
color: white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
input.sheet-is-npc:checked + span.sheet-is-npc-tab::before {
|
|
content: "NPC Sheet"
|
|
}
|
|
|
|
|
|
/* END player/npc button Settings */
|
|
|
|
/* Main Sheet Tabs */
|
|
|
|
div[class^="sheet-section"] {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-tab1:checked ~ div.sheet-section-screen,
|
|
input.sheet-tab2:checked ~ div.sheet-section-stats,
|
|
input.sheet-tab3:checked ~ div.sheet-section-attributes,
|
|
input.sheet-tab4:checked ~ div.sheet-section-skills,
|
|
input.sheet-tab5:checked ~ div.sheet-section-trappings {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-tab99:checked ~ div[class^="sheet-section"] {
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-tab {
|
|
width: 87px;
|
|
height: 24px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
}
|
|
|
|
span.sheet-tab {
|
|
text-align: center;
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
background: #595959;
|
|
color: white;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
width: 87px;
|
|
height: 24px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
margin-left: -77px;
|
|
border: 2px solid #595959;
|
|
}
|
|
|
|
input.sheet-tab1:checked + span.sheet-tab1,
|
|
input.sheet-tab2:checked + span.sheet-tab2,
|
|
input.sheet-tab3:checked + span.sheet-tab3,
|
|
input.sheet-tab4:checked + span.sheet-tab4,
|
|
input.sheet-tab5:checked + span.sheet-tab5,
|
|
input.sheet-tab99:checked + span.sheet-tab99 {
|
|
background: #BFBFBF;
|
|
color: black;
|
|
border-radius: 4px;
|
|
border: 2px solid #595959;
|
|
}
|
|
|
|
/* END Main sheet tabs */
|
|
|
|
|
|
|
|
.sheet-size,
|
|
.sheet-race,
|
|
.sheet-class {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-template:checked ~ div.sheet-size,
|
|
input.sheet-template:checked ~ div.sheet-race,
|
|
input.sheet-template:checked ~ div.sheet-class {
|
|
display: block;
|
|
}
|
|
|
|
/* Borders for repeating section rows */
|
|
|
|
.sheet-repitem,
|
|
.repitem {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.repcontrol {
|
|
margin: auto;
|
|
position: relative; }
|
|
|
|
.repcontrol_move,
|
|
button.repcontrol_add {
|
|
float: left;
|
|
}
|
|
|
|
.repcontainer .itemcontrol {
|
|
z-index: 1; }
|
|
|
|
.repcontrol .btn {
|
|
visibility: hidden;
|
|
border: none;
|
|
background: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding-left: 4px;
|
|
padding-right: 4px; }
|
|
|
|
.repcontrol .btn:focus {
|
|
outline: 0; }
|
|
|
|
.repcontrol .repcontrol_edit:after {
|
|
content: '(';
|
|
visibility: visible;
|
|
font-family: pictos;
|
|
background-color: #fff;
|
|
border: 1px solid black;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
height: 12px;
|
|
width: 12px;
|
|
padding: 2px 4px 2px 4px;
|
|
color: black; }
|
|
|
|
.editmode ~ .repcontrol .repcontrol_edit:after {
|
|
content: ')'; }
|
|
|
|
.repcontrol .repcontrol_add:before {
|
|
content: '&';
|
|
visibility: visible;
|
|
font-family: pictos;
|
|
background-color: #fff;
|
|
border: 1px solid black;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
height: 12px;
|
|
width: 12px;
|
|
padding: 2px 4px 2px 4px;
|
|
color: black; }
|
|
|
|
.repcontrol[data-groupname="repeating_extraarm"] .repcontrol_edit:hover:after,
|
|
.repcontrol[data-groupname="repeating_extraarm"] .repcontrol_add:hover:before {
|
|
background-color: #EFEFEF; }
|
|
|
|
.sheet-resources .repcontrol {
|
|
margin-top: -10px; }
|
|
|
|
.itemcontrol {
|
|
z-index: 10; }
|
|
|
|
.repcontrol[data-groupname="repeating_senses"] > .btn,
|
|
.repcontrol[data-groupname="repeating_sizetemplate"] > .btn,
|
|
.repcontrol[data-groupname="repeating_active"] > .btn,
|
|
.repcontrol[data-groupname="repeating_extraarm"] > .btn {
|
|
display: none;
|
|
}
|
|
|
|
/* General sheet/rolltemplate wide Styles */
|
|
|
|
span,
|
|
button,
|
|
input,
|
|
select,
|
|
textarea,
|
|
.sheet-row [class *="sheet-col"],
|
|
[class *="sheet-col"] {
|
|
font-size: 14px;
|
|
}
|
|
|
|
select,
|
|
input {
|
|
border: 1px solid;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
span {
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.sheet-spell-row-number,
|
|
.sheet-inventory-row-number,
|
|
.sheet-classaction-row-number {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-small-label,
|
|
.sheet-rolltemplate-besmDefault .sheet-small-label {
|
|
font-size: 85%!important;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-last-updated,
|
|
.sheet-rolltemplate-besmDefault .sheet-last-updated {
|
|
font-size: 85%!important;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.sheet-checkbox-row,
|
|
.sheet-rolltemplate-besmDefault .sheet-checkbox-row {
|
|
line-height: 28px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-ro-checkbox,
|
|
.sheet-rolltemplate-besmDefault .sheet-ro-checkbox {
|
|
line-height: 28px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-hd-row,
|
|
.sheet-rolltemplate-besmDefault .sheet-hd-row {
|
|
margin-top: 5px;
|
|
font-size: 11px!important;
|
|
}
|
|
|
|
.sheet-pictos,
|
|
.sheet-rolltemplate-besmDefault .sheet-pictos {
|
|
font-family: "Pictos";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-pictos-custom,
|
|
.sheet-rolltemplate-besmDefault .sheet-pictos-custom {
|
|
font-family: "Pictos Custom";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-pictos-three,
|
|
.sheet-rolltemplate-besmDefault .sheet-pictos-three {
|
|
font-family: "Pictos Three";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-d6-font,
|
|
.sheet-rolltemplate-besmDefault .sheet-d6-font {
|
|
font-family: "dicefontd6";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-d8-font,
|
|
.sheet-rolltemplate-besmDefault .sheet-d8-font {
|
|
font-family: "dicefontd8";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-d10-font,
|
|
.sheet-rolltemplate-besmDefault .sheet-d10-font {
|
|
font-family: "dicefontd10";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-d20-font,
|
|
.sheet-rolltemplate-besmDefault .sheet-d20-font {
|
|
font-family: "dicefontd20";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-padl,
|
|
.sheet-rolltemplate-besmDefault .sheet-padl {
|
|
padding-left: 10px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.sheet-padr,
|
|
.sheet-rolltemplate-besmDefault .sheet-padr {
|
|
padding-right: 10px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.sheet-padt,
|
|
.sheet-rolltemplate-besmDefault .sheet-padt {
|
|
padding-top: 12px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.sheet-padb,
|
|
.sheet-rolltemplate-besmDefault .sheet-padb {
|
|
padding-bottom: 5px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.sheet-border-right,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-right {
|
|
border-right: 1px solid #000;
|
|
}
|
|
|
|
.sheet-border-left,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-left {
|
|
border-left: 1px solid #000;
|
|
}
|
|
|
|
.sheet-border-top,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-top {
|
|
border-top: 1px solid #000;
|
|
}
|
|
|
|
.sheet-border-bottom,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-bottom {
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
.sheet-border-right-dotted,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-right-dotted {
|
|
border-right: 1px dotted #000;
|
|
}
|
|
|
|
.sheet-border-left-dotted,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-left-dotted {
|
|
border-left: 1px dotted #000;
|
|
}
|
|
|
|
.sheet-border-top-dotted,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-top-dotted {
|
|
border-top: 1px dotted #000;
|
|
}
|
|
|
|
.sheet-border-bottom-dotted,
|
|
.sheet-rolltemplate-besmDefault .sheet-border-bottom-dotted {
|
|
border-bottom: 1px dotted #000;
|
|
}
|
|
|
|
.sheet-align-center,
|
|
.sheet-rolltemplate-besmDefault .sheet-align-center {
|
|
text-align: center;
|
|
}
|
|
|
|
input[type=number],
|
|
input[type=text],
|
|
select {
|
|
width: 100%!important;
|
|
margin-bottom: 2px!important;
|
|
}
|
|
|
|
input[type=number] {
|
|
text-align: center;
|
|
}
|
|
|
|
input[type=text].sheet-underlined {
|
|
box-shadow: 0px -2px 0px 0px #000000 inset;
|
|
}
|
|
|
|
input[type=number].sheet-underlined {
|
|
box-shadow: 0px -2px 0px 0px #000000 inset;
|
|
}
|
|
|
|
button.sheet-core-save,
|
|
button.sheet-core-check,
|
|
button.sheet-initiative,
|
|
button.sheet-roll {
|
|
font-size: 12px!important;
|
|
}
|
|
|
|
button.sheet-initiative {
|
|
height: 3em;
|
|
}
|
|
|
|
hr,
|
|
.sheet-rolltemplate-besmDefault hr {
|
|
border: 0;
|
|
height: 1px;
|
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 75.75), rgba(0, 0, 0, 0));
|
|
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 75.75), rgba(0, 0, 0, 0));
|
|
background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 75.75), rgba(0, 0, 0, 0));
|
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 75.75), rgba(0, 0, 0, 0));
|
|
margin: 5px 0;
|
|
}
|
|
|
|
span.sheet-spacer,
|
|
.sheet-rolltemplate-besmDefault span.sheet-spacer {
|
|
display: block;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.sheet-heading-row {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-footer-row {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid #dddddd;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.sheet-vert-middle,
|
|
.sheet-rolltemplate-besmDefault .sheet-vert-middle {
|
|
vertical-align: middle!important;
|
|
}
|
|
|
|
.sheet-vert-bottom,
|
|
.sheet-rolltemplate-besmDefault .sheet-vert-bottom {
|
|
vertical-align: bottom!important;
|
|
}
|
|
|
|
.sheet-center,
|
|
.sheet-rolltemplate-besmDefault .sheet-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-left,
|
|
.sheet-rolltemplate-besmDefault .sheet-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.sheet-right,
|
|
.sheet-rolltemplate-besmDefault .sheet-right {
|
|
text-align: right;
|
|
}
|
|
|
|
textarea {
|
|
width: calc(100% - 10px);
|
|
height: 150px;
|
|
resize: none;
|
|
}
|
|
|
|
.sheet-fluid-textarea {
|
|
height: 100%;
|
|
}
|
|
|
|
.sheet-small-textarea {
|
|
height: 50px;
|
|
}
|
|
|
|
.sheet-medium-textarea {
|
|
height: 100px;
|
|
}
|
|
|
|
.sheet-large-textarea {
|
|
height: 300px;
|
|
}
|
|
|
|
h4 {
|
|
color: black;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
border-radius: 12px;
|
|
padding: 4px 5px 3px 9px;
|
|
|
|
}
|
|
|
|
input[disabled],
|
|
input[readonly] {
|
|
background-color: #eaffef;
|
|
border-color: #ddd;
|
|
cursor: not-allowed;
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
input[disabled].sheet-passive-skill-score {
|
|
background-color: #def6fc;
|
|
border-color: #ddd;
|
|
cursor: not-allowed;
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
input[disabled]::-webkit-inner-spin-button,
|
|
input[disabled]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.sheet-small-note {
|
|
text-align: center;
|
|
font-family: Arial;
|
|
font-size: 10px!important;
|
|
}
|
|
|
|
select {
|
|
font-size: 100%;
|
|
}
|
|
|
|
.sheet-important-text {
|
|
text-decoration: underline;
|
|
color: #ff0000;
|
|
}
|
|
|
|
.sheet-grey-row {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.sheet-sub-header {
|
|
background-color: #cecece;
|
|
vertical-align: bottom;
|
|
border-radius: 12px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.sheet-footer {
|
|
background-color: rgba(250, 202, 78, 0.2);
|
|
vertical-align: bottom;
|
|
border-radius: 12px;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.sheet-spell-header {
|
|
background-color: #c7d1bf;
|
|
vertical-align: bottom;
|
|
border-radius: 12px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
|
|
/* Header section */
|
|
|
|
img.sheet-icon {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
|
|
/* Core stat section */
|
|
|
|
.sheet-core-stat-label {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
font-size: 14px!important;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
vertical-align: middle;
|
|
line-height: 28px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-large-button {
|
|
padding: 5px;
|
|
height: 45px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
/* Death save checkboxes - FAIL */
|
|
|
|
input.sheet-death-save-fail {
|
|
width: 28%;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
span.sheet-death-save-fail-tab::before {
|
|
content: "???";
|
|
}
|
|
|
|
span.sheet-death-save-fail-tab {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 28%;
|
|
height: 20px;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
margin-left: -28%;
|
|
border: 1px solid;
|
|
}
|
|
|
|
input.sheet-death-save-fail:checked + span.sheet-death-save-fail-tab {
|
|
background: #8c6075;
|
|
color: white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
input.sheet-death-save-fail:checked + span.sheet-death-save-fail-tab::before {
|
|
content: "Failure";
|
|
}
|
|
|
|
|
|
/* Death save checkboxes - success */
|
|
|
|
input.sheet-death-save-success {
|
|
width: 28%;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
span.sheet-death-save-success-tab::before {
|
|
content: "???";
|
|
}
|
|
|
|
span.sheet-death-save-success-tab {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 28%;
|
|
height: 20px;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
margin-left: -28%;
|
|
border: 1px solid;
|
|
}
|
|
|
|
input.sheet-death-save-success:checked + span.sheet-death-save-success-tab {
|
|
background: #879a6a;
|
|
color: white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
input.sheet-death-save-success:checked + span.sheet-death-save-success-tab::before {
|
|
content: "Success"
|
|
}
|
|
|
|
|
|
/* Skills section */
|
|
|
|
.sheet-skill-row {
|
|
margin: 1px 0;
|
|
}
|
|
|
|
.sheet-skill-roll {
|
|
padding: 0 5px!important;
|
|
height: 29px;
|
|
}
|
|
|
|
.sheet-skill-name {
|
|
margin-top: 5px;
|
|
font-size: 11px!important;
|
|
}
|
|
|
|
.sheet-skill-checkbox {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.sheet-margin-top {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.sheet-margin-bottom {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.sheet-margin-left {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.sheet-margin-right {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.sheet-skill-stat
|
|
{
|
|
color: black;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sheet-skill-background
|
|
{
|
|
background: white;
|
|
}
|
|
|
|
/* Testing modal window */
|
|
|
|
.sheet-ro-modal {
|
|
position: absolute;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
top: -58px;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
z-index: 99999;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sheet-here-i-am {
|
|
border-color: blue;
|
|
display: block;
|
|
}
|
|
|
|
input.sheet-ro-checkbox:checked + span + div {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
input.sheet-ro-checkbox:checked + span + div > div {
|
|
width: auto;
|
|
height: auto;
|
|
position: relative;
|
|
margin: 10% auto;
|
|
padding: 5px 3px 13px 3px;
|
|
border-radius: 10px;
|
|
background: #f2e394;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
input.sheet-ro-checkbox {
|
|
width: 16px;
|
|
height: 28px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
line-height: 28px;
|
|
text-align: center;
|
|
}
|
|
|
|
span.sheet-ro-label {
|
|
display: inline-block;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
font-family: "Pictos";
|
|
cursor: pointer;
|
|
position: relative;
|
|
margin-left: -16px;
|
|
color: black;
|
|
}
|
|
|
|
span.sheet-template-label {
|
|
display: inline-block;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
font-family: "Pictos Custom";
|
|
cursor: pointer;
|
|
position: relative;
|
|
margin-left: -16px;
|
|
color: black;
|
|
}
|
|
|
|
.sheet-ro-alignmid {
|
|
bottom: -.5em;
|
|
}
|
|
|
|
.sheet-ro-header {
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.sheet-ro-title {
|
|
font-size: 20px!important;
|
|
}
|
|
|
|
.sheet-ro-close-wrapper {
|
|
text-align: right;
|
|
}
|
|
|
|
input.sheet-ro-close-checkbox {
|
|
width: 18%;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
left: -80px;
|
|
}
|
|
|
|
span.sheet-attr-close-label::before,
|
|
span.sheet-ro-close-label::before {
|
|
content: "X";
|
|
}
|
|
|
|
span.sheet-ro-close-label {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 6%;
|
|
height: 20px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
margin-left: -28%;
|
|
border: 1px solid;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
span.sheet-attr-close-label {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 6%;
|
|
height: 26px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
margin-left: -28%;
|
|
border: 1px solid;
|
|
}
|
|
|
|
/* Templates modal window */
|
|
|
|
.sheet-templates-modal {
|
|
position: absolute;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
top: -58px;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
z-index: 99999;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
input.sheet-templates-checkbox:checked + span + div {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
input.sheet-templates-checkbox:checked + span + div > div {
|
|
width: auto;
|
|
height: auto;
|
|
position: relative;
|
|
margin: 10% auto;
|
|
padding: 5px 3px 13px 3px;
|
|
border-radius: 10px;
|
|
background: #b7d7e8;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
input.sheet-templates-checkbox {
|
|
width: 80px;
|
|
height: 18px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
line-height: 28px;
|
|
text-align: center;
|
|
margin-left: 0;
|
|
}
|
|
|
|
span.sheet-templates-checkbox,
|
|
span.sheet-templatebutton {
|
|
text-align: center;
|
|
margin-bottom: 4px;
|
|
display: inline-block;
|
|
font-size: 13px;
|
|
background: #87bdd8;
|
|
color: white;
|
|
font-weight: bold;
|
|
width: 80px;
|
|
height: 18px;
|
|
position: relative;
|
|
margin-left: -82px;
|
|
}
|
|
|
|
span.sheet-templates-label {
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
font-family: "Pictos";
|
|
cursor: pointer;
|
|
position: relative;
|
|
margin-left: -16px;
|
|
}
|
|
|
|
.sheet-templates-header {
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.sheet-templates-title {
|
|
font-size: 20px!important;
|
|
}
|
|
|
|
.sheet-templates-close-wrapper {
|
|
text-align: right;
|
|
}
|
|
|
|
input.sheet-templates-close-checkbox {
|
|
width: 18%;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
left: -80px;
|
|
}
|
|
|
|
span.sheet-templates-close-label::before {
|
|
content: "X";
|
|
}
|
|
|
|
span.sheet-templates-close-label {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 6%;
|
|
height: 25px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
margin-left: -28%;
|
|
border: 1px solid;
|
|
}
|
|
|
|
span.sheet-templates-close-label {
|
|
background: #87bdd8;
|
|
color: black;
|
|
border-radius: 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
span.sheet-ignored-roll {
|
|
background: black;
|
|
}
|
|
|
|
.sheet-ro-optionlabel {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-ro-option {}
|
|
|
|
|
|
/** test ends here */
|
|
|
|
|
|
/* Custom Pure Grid CSS (24 cols) DO NOT EDIT BELOW THIS LINE OR RISK BREAKING FORMATTING */
|
|
|
|
.sheet-row,
|
|
.sheet-rolltemplate-besmDefault .sheet-row {
|
|
letter-spacing: -0.31em;
|
|
*letter-spacing: normal;
|
|
*word-spacing: -0.43em;
|
|
text-rendering: optimizespeed;
|
|
}
|
|
|
|
.sheet-opera-only:-o-prefocus,
|
|
.sheet-row,
|
|
.sheet-rolltemplate-besmDefault .sheet-opera-only:-o-prefocus,
|
|
.sheet-rolltemplate-besmDefault .sheet-row {
|
|
word-spacing: -0.43em;
|
|
}
|
|
|
|
.sheet-col,
|
|
.sheet-rolltemplate-besmDefault .sheet-col {
|
|
display: inline-block;
|
|
zoom: 1;
|
|
*display: inline;
|
|
letter-spacing: normal;
|
|
word-spacing: normal;
|
|
vertical-align: top;
|
|
text-rendering: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-2,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-3,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-3,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-4,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-4,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-6,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-6,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-18-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-18-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-20-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-21-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-18-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-20-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-21-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-22-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-21-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-23-24,
|
|
.sheet-col-1,
|
|
.sheet-col-1-2,
|
|
.sheet-col-1-3,
|
|
.sheet-col-2-3,
|
|
.sheet-col-1-4,
|
|
.sheet-col-3-4,
|
|
.sheet-col-1-5,
|
|
.sheet-col-2-5,
|
|
.sheet-col-3-5,
|
|
.sheet-col-4-5,
|
|
.sheet-col-1-6,
|
|
.sheet-col-5-6,
|
|
.sheet-col-1-7,
|
|
.sheet-col-2-7,
|
|
.sheet-col-3-7,
|
|
.sheet-col-4-7,
|
|
.sheet-col-5-7,
|
|
.sheet-col-6-7,
|
|
.sheet-col-1-8,
|
|
.sheet-col-3-8,
|
|
.sheet-col-5-8,
|
|
.sheet-col-7-8,
|
|
.sheet-col-1-9,
|
|
.sheet-col-2-9,
|
|
.sheet-col-4-9,
|
|
.sheet-col-5-9,
|
|
.sheet-col-6-9,
|
|
.sheet-col-7-9,
|
|
.sheet-col-8-9,
|
|
.sheet-col-1-10,
|
|
.sheet-col-3-10,
|
|
.sheet-col-7-10,
|
|
.sheet-col-9-10,
|
|
.sheet-col-1-11,
|
|
.sheet-col-2-11,
|
|
.sheet-col-3-11,
|
|
.sheet-col-4-11,
|
|
.sheet-col-5-11,
|
|
.sheet-col-6-11,
|
|
.sheet-col-7-11,
|
|
.sheet-col-8-11,
|
|
.sheet-col-9-11,
|
|
.sheet-col-10-11,
|
|
.sheet-col-1-12,
|
|
.sheet-col-5-12,
|
|
.sheet-col-7-12,
|
|
.sheet-col-9-12,
|
|
.sheet-col-11-12,
|
|
.sheet-col-1-13,
|
|
.sheet-col-2-13,
|
|
.sheet-col-3-13,
|
|
.sheet-col-4-13,
|
|
.sheet-col-5-13,
|
|
.sheet-col-6-13,
|
|
.sheet-col-7-13,
|
|
.sheet-col-8-13,
|
|
.sheet-col-9-13,
|
|
.sheet-col-10-13,
|
|
.sheet-col-11-13,
|
|
.sheet-col-12-13,
|
|
.sheet-col-1-14,
|
|
.sheet-col-3-14,
|
|
.sheet-col-5-14,
|
|
.sheet-col-9-14,
|
|
.sheet-col-11-14,
|
|
.sheet-col-13-14,
|
|
.sheet-col-1-15,
|
|
.sheet-col-2-15,
|
|
.sheet-col-4-15,
|
|
.sheet-col-6-15,
|
|
.sheet-col-7-15,
|
|
.sheet-col-8-15,
|
|
.sheet-col-9-15,
|
|
.sheet-col-10-15,
|
|
.sheet-col-11-15,
|
|
.sheet-col-12-15,
|
|
.sheet-col-13-15,
|
|
.sheet-col-14-15,
|
|
.sheet-col-1-16,
|
|
.sheet-col-3-16,
|
|
.sheet-col-5-16,
|
|
.sheet-col-7-16,
|
|
.sheet-col-9-16,
|
|
.sheet-col-11-16,
|
|
.sheet-col-13-16,
|
|
.sheet-col-15-16,
|
|
.sheet-col-1-17,
|
|
.sheet-col-2-17,
|
|
.sheet-col-3-17,
|
|
.sheet-col-4-17,
|
|
.sheet-col-5-17,
|
|
.sheet-col-6-17,
|
|
.sheet-col-7-17,
|
|
.sheet-col-8-17,
|
|
.sheet-col-9-17,
|
|
.sheet-col-10-17,
|
|
.sheet-col-11-17,
|
|
.sheet-col-12-17,
|
|
.sheet-col-13-17,
|
|
.sheet-col-14-17,
|
|
.sheet-col-15-17,
|
|
.sheet-col-16-17,
|
|
.sheet-col-1-18,
|
|
.sheet-col-5-18,
|
|
.sheet-col-7-18,
|
|
.sheet-col-11-18,
|
|
.sheet-col-13-18,
|
|
.sheet-col-15-18,
|
|
.sheet-col-17-18,
|
|
.sheet-col-1-19,
|
|
.sheet-col-2-19,
|
|
.sheet-col-3-19,
|
|
.sheet-col-4-19,
|
|
.sheet-col-5-19,
|
|
.sheet-col-6-19,
|
|
.sheet-col-7-19,
|
|
.sheet-col-8-19,
|
|
.sheet-col-9-19,
|
|
.sheet-col-10-19,
|
|
.sheet-col-11-19,
|
|
.sheet-col-12-19,
|
|
.sheet-col-13-19,
|
|
.sheet-col-14-19,
|
|
.sheet-col-15-19,
|
|
.sheet-col-16-19,
|
|
.sheet-col-17-19,
|
|
.sheet-col-18-19,
|
|
.sheet-col-1-20,
|
|
.sheet-col-3-20,
|
|
.sheet-col-7-20,
|
|
.sheet-col-9-20,
|
|
.sheet-col-11-20,
|
|
.sheet-col-13-20,
|
|
.sheet-col-15-20,
|
|
.sheet-col-17-20,
|
|
.sheet-col-19-20,
|
|
.sheet-col-1-21,
|
|
.sheet-col-2-21,
|
|
.sheet-col-4-21,
|
|
.sheet-col-5-21,
|
|
.sheet-col-6-21,
|
|
.sheet-col-8-21,
|
|
.sheet-col-9-21,
|
|
.sheet-col-10-21,
|
|
.sheet-col-11-21,
|
|
.sheet-col-12-21,
|
|
.sheet-col-13-21,
|
|
.sheet-col-14-21,
|
|
.sheet-col-15-21,
|
|
.sheet-col-16-21,
|
|
.sheet-col-17-21,
|
|
.sheet-col-18-21,
|
|
.sheet-col-19-21,
|
|
.sheet-col-20-21,
|
|
.sheet-col-1-22,
|
|
.sheet-col-3-22,
|
|
.sheet-col-5-22,
|
|
.sheet-col-7-22,
|
|
.sheet-col-9-22,
|
|
.sheet-col-13-22,
|
|
.sheet-col-15-22,
|
|
.sheet-col-17-22,
|
|
.sheet-col-19-22,
|
|
.sheet-col-21-22,
|
|
.sheet-col-1-23,
|
|
.sheet-col-2-23,
|
|
.sheet-col-3-23,
|
|
.sheet-col-4-23,
|
|
.sheet-col-5-23,
|
|
.sheet-col-6-23,
|
|
.sheet-col-7-23,
|
|
.sheet-col-8-23,
|
|
.sheet-col-9-23,
|
|
.sheet-col-10-23,
|
|
.sheet-col-11-23,
|
|
.sheet-col-12-23,
|
|
.sheet-col-13-23,
|
|
.sheet-col-14-23,
|
|
.sheet-col-15-23,
|
|
.sheet-col-16-23,
|
|
.sheet-col-17-23,
|
|
.sheet-col-18-23,
|
|
.sheet-col-19-23,
|
|
.sheet-col-20-23,
|
|
.sheet-col-21-23,
|
|
.sheet-col-22-23,
|
|
.sheet-col-1-24,
|
|
.sheet-col-5-24,
|
|
.sheet-col-7-24,
|
|
.sheet-col-9-24,
|
|
.sheet-col-11-24,
|
|
.sheet-col-13-24,
|
|
.sheet-col-15-24,
|
|
.sheet-col-17-24,
|
|
.sheet-col-19-24,
|
|
.sheet-col-21-24,
|
|
.sheet-col-23-24 {
|
|
display: inline-block;
|
|
zoom: 1;
|
|
*display: inline;
|
|
letter-spacing: normal;
|
|
word-spacing: normal;
|
|
vertical-align: top;
|
|
text-rendering: auto;
|
|
}
|
|
|
|
.sheet-col-1,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1 {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-col-1-2,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-2 {
|
|
width: 50%;
|
|
}
|
|
|
|
.sheet-offset-1-2,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-2 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
.sheet-col-1-3,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-3 {
|
|
width: 33.33333%;
|
|
}
|
|
|
|
.sheet-offset-1-3,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-3 {
|
|
margin-left: 33.33333%;
|
|
}
|
|
|
|
.sheet-col-2-3,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-3 {
|
|
width: 66.66667%;
|
|
}
|
|
|
|
.sheet-offset-2-3,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-3 {
|
|
margin-left: 66.66667%;
|
|
}
|
|
|
|
.sheet-col-1-4,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-4 {
|
|
width: 25%;
|
|
}
|
|
|
|
.sheet-offset-1-4,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-4 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
.sheet-col-3-4,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-4 {
|
|
width: 75%;
|
|
}
|
|
|
|
.sheet-offset-3-4,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-4 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
.sheet-col-1-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-5 {
|
|
width: 20%;
|
|
}
|
|
|
|
.sheet-offset-1-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-5 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
.sheet-col-2-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-5 {
|
|
width: 40%;
|
|
}
|
|
|
|
.sheet-offset-2-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-5 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
.sheet-col-3-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-5 {
|
|
width: 60%;
|
|
}
|
|
|
|
.sheet-offset-3-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-5 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
.sheet-col-4-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-5 {
|
|
width: 80%;
|
|
}
|
|
|
|
.sheet-offset-4-5,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-5 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
.sheet-col-1-6,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-6 {
|
|
width: 16.66667%;
|
|
}
|
|
|
|
.sheet-offset-1-6,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-6 {
|
|
margin-left: 16.66667%;
|
|
}
|
|
|
|
.sheet-col-5-6,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-6 {
|
|
width: 83.33333%;
|
|
}
|
|
|
|
.sheet-offset-5-6,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-6 {
|
|
margin-left: 83.33333%;
|
|
}
|
|
|
|
.sheet-col-1-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-7 {
|
|
width: 14.28571%;
|
|
}
|
|
|
|
.sheet-offset-1-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-7 {
|
|
margin-left: 14.28571%;
|
|
}
|
|
|
|
.sheet-col-2-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-7 {
|
|
width: 28.57143%;
|
|
}
|
|
|
|
.sheet-offset-2-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-7 {
|
|
margin-left: 28.57143%;
|
|
}
|
|
|
|
.sheet-col-3-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-7 {
|
|
width: 42.85714%;
|
|
}
|
|
|
|
.sheet-offset-3-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-7 {
|
|
margin-left: 42.85714%;
|
|
}
|
|
|
|
.sheet-col-4-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-7 {
|
|
width: 57.14286%;
|
|
}
|
|
|
|
.sheet-offset-4-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-7 {
|
|
margin-left: 57.14286%;
|
|
}
|
|
|
|
.sheet-col-5-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-7 {
|
|
width: 71.42857%;
|
|
}
|
|
|
|
.sheet-offset-5-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-7 {
|
|
margin-left: 71.42857%;
|
|
}
|
|
|
|
.sheet-col-6-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-7 {
|
|
width: 85.71429%;
|
|
}
|
|
|
|
.sheet-offset-6-7,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-7 {
|
|
margin-left: 85.71429%;
|
|
}
|
|
|
|
.sheet-col-1-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-8 {
|
|
width: 12.5%;
|
|
}
|
|
|
|
.sheet-offset-1-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-8 {
|
|
margin-left: 12.5%;
|
|
}
|
|
|
|
.sheet-col-3-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-8 {
|
|
width: 37.5%;
|
|
}
|
|
|
|
.sheet-offset-3-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-8 {
|
|
margin-left: 37.5%;
|
|
}
|
|
|
|
.sheet-col-5-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-8 {
|
|
width: 62.5%;
|
|
}
|
|
|
|
.sheet-offset-5-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-8 {
|
|
margin-left: 62.5%;
|
|
}
|
|
|
|
.sheet-col-7-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-8 {
|
|
width: 87.5%;
|
|
}
|
|
|
|
.sheet-offset-7-8,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-8 {
|
|
margin-left: 87.5%;
|
|
}
|
|
|
|
.sheet-col-1-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-9 {
|
|
width: 11.11111%;
|
|
}
|
|
|
|
.sheet-offset-1-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-9 {
|
|
margin-left: 11.11111%;
|
|
}
|
|
|
|
.sheet-col-2-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-9 {
|
|
width: 22.22222%;
|
|
}
|
|
|
|
.sheet-offset-2-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-9 {
|
|
margin-left: 22.22222%;
|
|
}
|
|
|
|
.sheet-col-4-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-9 {
|
|
width: 44.44444%;
|
|
}
|
|
|
|
.sheet-offset-4-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-9 {
|
|
margin-left: 44.44444%;
|
|
}
|
|
|
|
.sheet-col-5-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-9 {
|
|
width: 55.55556%;
|
|
}
|
|
|
|
.sheet-offset-5-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-9 {
|
|
margin-left: 55.55556%;
|
|
}
|
|
|
|
.sheet-col-6-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-9 {
|
|
width: 66.66667%;
|
|
}
|
|
|
|
.sheet-offset-6-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-9 {
|
|
margin-left: 66.66667%;
|
|
}
|
|
|
|
.sheet-col-7-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-9 {
|
|
width: 77.77778%;
|
|
}
|
|
|
|
.sheet-offset-7-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-9 {
|
|
margin-left: 77.77778%;
|
|
}
|
|
|
|
.sheet-col-8-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-9 {
|
|
width: 88.88889%;
|
|
}
|
|
|
|
.sheet-offset-8-9,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-9 {
|
|
margin-left: 88.88889%;
|
|
}
|
|
|
|
.sheet-col-1-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-10 {
|
|
width: 10%;
|
|
}
|
|
|
|
.sheet-offset-1-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
.sheet-col-3-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-10 {
|
|
width: 30%;
|
|
}
|
|
|
|
.sheet-offset-3-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-10 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
.sheet-col-7-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-10 {
|
|
width: 70%;
|
|
}
|
|
|
|
.sheet-offset-7-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-10 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
.sheet-col-9-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-10 {
|
|
width: 90%;
|
|
}
|
|
|
|
.sheet-offset-9-10,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-10 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
.sheet-col-1-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-11 {
|
|
width: 9.09091%;
|
|
}
|
|
|
|
.sheet-offset-1-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-11 {
|
|
margin-left: 9.09091%;
|
|
}
|
|
|
|
.sheet-col-2-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-11 {
|
|
width: 18.18182%;
|
|
}
|
|
|
|
.sheet-offset-2-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-11 {
|
|
margin-left: 18.18182%;
|
|
}
|
|
|
|
.sheet-col-3-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-11 {
|
|
width: 27.27273%;
|
|
}
|
|
|
|
.sheet-offset-3-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-11 {
|
|
margin-left: 27.27273%;
|
|
}
|
|
|
|
.sheet-col-4-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-11 {
|
|
width: 36.36364%;
|
|
}
|
|
|
|
.sheet-offset-4-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-11 {
|
|
margin-left: 36.36364%;
|
|
}
|
|
|
|
.sheet-col-5-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-11 {
|
|
width: 45.45455%;
|
|
}
|
|
|
|
.sheet-offset-5-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-11 {
|
|
margin-left: 45.45455%;
|
|
}
|
|
|
|
.sheet-col-6-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-11 {
|
|
width: 54.54545%;
|
|
}
|
|
|
|
.sheet-offset-6-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-11 {
|
|
margin-left: 54.54545%;
|
|
}
|
|
|
|
.sheet-col-7-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-11 {
|
|
width: 63.63636%;
|
|
}
|
|
|
|
.sheet-offset-7-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-11 {
|
|
margin-left: 63.63636%;
|
|
}
|
|
|
|
.sheet-col-8-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-11 {
|
|
width: 72.72727%;
|
|
}
|
|
|
|
.sheet-offset-8-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-11 {
|
|
margin-left: 72.72727%;
|
|
}
|
|
|
|
.sheet-col-9-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-11 {
|
|
width: 81.81818%;
|
|
}
|
|
|
|
.sheet-offset-9-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-11 {
|
|
margin-left: 81.81818%;
|
|
}
|
|
|
|
.sheet-col-10-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-11 {
|
|
width: 90.90909%;
|
|
}
|
|
|
|
.sheet-offset-10-11,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-11 {
|
|
margin-left: 90.90909%;
|
|
}
|
|
|
|
.sheet-col-1-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-12 {
|
|
width: 8.33333%;
|
|
}
|
|
|
|
.sheet-offset-1-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-12 {
|
|
margin-left: 8.33333%;
|
|
}
|
|
|
|
.sheet-col-5-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-12 {
|
|
width: 41.66667%;
|
|
}
|
|
|
|
.sheet-offset-5-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-12 {
|
|
margin-left: 41.66667%;
|
|
}
|
|
|
|
.sheet-col-7-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-12 {
|
|
width: 58.33333%;
|
|
}
|
|
|
|
.sheet-offset-7-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-12 {
|
|
margin-left: 58.33333%;
|
|
}
|
|
|
|
.sheet-col-9-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-12 {
|
|
width: 75%;
|
|
}
|
|
|
|
.sheet-offset-9-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-12 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
.sheet-col-11-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-12 {
|
|
width: 91.66667%;
|
|
}
|
|
|
|
.sheet-offset-11-12,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-12 {
|
|
margin-left: 91.66667%;
|
|
}
|
|
|
|
.sheet-col-1-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-13 {
|
|
width: 7.69231%;
|
|
}
|
|
|
|
.sheet-offset-1-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-13 {
|
|
margin-left: 7.69231%;
|
|
}
|
|
|
|
.sheet-col-2-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-13 {
|
|
width: 15.38462%;
|
|
}
|
|
|
|
.sheet-offset-2-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-13 {
|
|
margin-left: 15.38462%;
|
|
}
|
|
|
|
.sheet-col-3-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-13 {
|
|
width: 23.07692%;
|
|
}
|
|
|
|
.sheet-offset-3-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-13 {
|
|
margin-left: 23.07692%;
|
|
}
|
|
|
|
.sheet-col-4-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-13 {
|
|
width: 30.76923%;
|
|
}
|
|
|
|
.sheet-offset-4-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-13 {
|
|
margin-left: 30.76923%;
|
|
}
|
|
|
|
.sheet-col-5-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-13 {
|
|
width: 38.46154%;
|
|
}
|
|
|
|
.sheet-offset-5-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-13 {
|
|
margin-left: 38.46154%;
|
|
}
|
|
|
|
.sheet-col-6-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-13 {
|
|
width: 46.15385%;
|
|
}
|
|
|
|
.sheet-offset-6-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-13 {
|
|
margin-left: 46.15385%;
|
|
}
|
|
|
|
.sheet-col-7-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-13 {
|
|
width: 53.84615%;
|
|
}
|
|
|
|
.sheet-offset-7-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-13 {
|
|
margin-left: 53.84615%;
|
|
}
|
|
|
|
.sheet-col-8-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-13 {
|
|
width: 61.53846%;
|
|
}
|
|
|
|
.sheet-offset-8-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-13 {
|
|
margin-left: 61.53846%;
|
|
}
|
|
|
|
.sheet-col-9-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-13 {
|
|
width: 69.23077%;
|
|
}
|
|
|
|
.sheet-offset-9-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-13 {
|
|
margin-left: 69.23077%;
|
|
}
|
|
|
|
.sheet-col-10-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-13 {
|
|
width: 76.92308%;
|
|
}
|
|
|
|
.sheet-offset-10-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-13 {
|
|
margin-left: 76.92308%;
|
|
}
|
|
|
|
.sheet-col-11-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-13 {
|
|
width: 84.61538%;
|
|
}
|
|
|
|
.sheet-offset-11-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-13 {
|
|
margin-left: 84.61538%;
|
|
}
|
|
|
|
.sheet-col-12-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-13 {
|
|
width: 92.30769%;
|
|
}
|
|
|
|
.sheet-offset-12-13,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-12-13 {
|
|
margin-left: 92.30769%;
|
|
}
|
|
|
|
.sheet-col-1-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-14 {
|
|
width: 7.14286%;
|
|
}
|
|
|
|
.sheet-offset-1-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-14 {
|
|
margin-left: 7.14286%;
|
|
}
|
|
|
|
.sheet-col-3-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-14 {
|
|
width: 21.42857%;
|
|
}
|
|
|
|
.sheet-offset-3-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-14 {
|
|
margin-left: 21.42857%;
|
|
}
|
|
|
|
.sheet-col-5-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-14 {
|
|
width: 35.71429%;
|
|
}
|
|
|
|
.sheet-offset-5-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-14 {
|
|
margin-left: 35.71429%;
|
|
}
|
|
|
|
.sheet-col-9-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-14 {
|
|
width: 64.28571%;
|
|
}
|
|
|
|
.sheet-offset-9-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-14 {
|
|
margin-left: 64.28571%;
|
|
}
|
|
|
|
.sheet-col-11-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-14 {
|
|
width: 78.57143%;
|
|
}
|
|
|
|
.sheet-offset-11-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-14 {
|
|
margin-left: 78.57143%;
|
|
}
|
|
|
|
.sheet-col-13-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-14 {
|
|
width: 92.85714%;
|
|
}
|
|
|
|
.sheet-offset-13-14,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-14 {
|
|
margin-left: 92.85714%;
|
|
}
|
|
|
|
.sheet-col-1-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-15 {
|
|
width: 6.66667%;
|
|
}
|
|
|
|
.sheet-offset-1-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-15 {
|
|
margin-left: 6.66667%;
|
|
}
|
|
|
|
.sheet-col-2-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-15 {
|
|
width: 13.33333%;
|
|
}
|
|
|
|
.sheet-offset-2-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-15 {
|
|
margin-left: 13.33333%;
|
|
}
|
|
|
|
.sheet-col-4-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-15 {
|
|
width: 26.66667%;
|
|
}
|
|
|
|
.sheet-offset-4-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-15 {
|
|
margin-left: 26.66667%;
|
|
}
|
|
|
|
.sheet-col-6-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-15 {
|
|
width: 40%;
|
|
}
|
|
|
|
.sheet-offset-6-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-15 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
.sheet-col-7-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-15 {
|
|
width: 46.66667%;
|
|
}
|
|
|
|
.sheet-offset-7-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-15 {
|
|
margin-left: 46.66667%;
|
|
}
|
|
|
|
.sheet-col-8-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-15 {
|
|
width: 53.33333%;
|
|
}
|
|
|
|
.sheet-offset-8-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-15 {
|
|
margin-left: 53.33333%;
|
|
}
|
|
|
|
.sheet-col-9-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-15 {
|
|
width: 60%;
|
|
}
|
|
|
|
.sheet-offset-9-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-15 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
.sheet-col-10-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-15 {
|
|
width: 66.66667%;
|
|
}
|
|
|
|
.sheet-offset-10-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-15 {
|
|
margin-left: 66.66667%;
|
|
}
|
|
|
|
.sheet-col-11-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-15 {
|
|
width: 73.33333%;
|
|
}
|
|
|
|
.sheet-offset-11-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-15 {
|
|
margin-left: 73.33333%;
|
|
}
|
|
|
|
.sheet-col-12-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-15 {
|
|
width: 80%;
|
|
}
|
|
|
|
.sheet-offset-12-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-12-15 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
.sheet-col-13-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-15 {
|
|
width: 86.66667%;
|
|
}
|
|
|
|
.sheet-offset-13-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-15 {
|
|
margin-left: 86.66667%;
|
|
}
|
|
|
|
.sheet-col-14-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-15 {
|
|
width: 93.33333%;
|
|
}
|
|
|
|
.sheet-offset-14-15,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-14-15 {
|
|
margin-left: 93.33333%;
|
|
}
|
|
|
|
.sheet-col-1-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-16 {
|
|
width: 6.25%;
|
|
}
|
|
|
|
.sheet-offset-1-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-16 {
|
|
margin-left: 6.25%;
|
|
}
|
|
|
|
.sheet-col-3-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-16 {
|
|
width: 18.75%;
|
|
}
|
|
|
|
.sheet-offset-3-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-16 {
|
|
margin-left: 18.75%;
|
|
}
|
|
|
|
.sheet-col-5-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-16 {
|
|
width: 31.25%;
|
|
}
|
|
|
|
.sheet-offset-5-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-16 {
|
|
margin-left: 31.25%;
|
|
}
|
|
|
|
.sheet-col-7-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-16 {
|
|
width: 43.75%;
|
|
}
|
|
|
|
.sheet-offset-7-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-16 {
|
|
margin-left: 43.75%;
|
|
}
|
|
|
|
.sheet-col-9-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-16 {
|
|
width: 56.25%;
|
|
}
|
|
|
|
.sheet-offset-9-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-16 {
|
|
margin-left: 56.25%;
|
|
}
|
|
|
|
.sheet-col-11-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-16 {
|
|
width: 68.75%;
|
|
}
|
|
|
|
.sheet-offset-11-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-16 {
|
|
margin-left: 68.75%;
|
|
}
|
|
|
|
.sheet-col-13-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-16 {
|
|
width: 81.25%;
|
|
}
|
|
|
|
.sheet-offset-13-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-16 {
|
|
margin-left: 81.25%;
|
|
}
|
|
|
|
.sheet-col-15-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-16 {
|
|
width: 93.75%;
|
|
}
|
|
|
|
.sheet-offset-15-16,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-16 {
|
|
margin-left: 93.75%;
|
|
}
|
|
|
|
.sheet-col-1-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-17 {
|
|
width: 5.88235%;
|
|
}
|
|
|
|
.sheet-offset-1-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-17 {
|
|
margin-left: 5.88235%;
|
|
}
|
|
|
|
.sheet-col-2-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-17 {
|
|
width: 11.76471%;
|
|
}
|
|
|
|
.sheet-offset-2-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-17 {
|
|
margin-left: 11.76471%;
|
|
}
|
|
|
|
.sheet-col-3-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-17 {
|
|
width: 17.64706%;
|
|
}
|
|
|
|
.sheet-offset-3-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-17 {
|
|
margin-left: 17.64706%;
|
|
}
|
|
|
|
.sheet-col-4-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-17 {
|
|
width: 23.52941%;
|
|
}
|
|
|
|
.sheet-offset-4-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-17 {
|
|
margin-left: 23.52941%;
|
|
}
|
|
|
|
.sheet-col-5-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-17 {
|
|
width: 29.41176%;
|
|
}
|
|
|
|
.sheet-offset-5-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-17 {
|
|
margin-left: 29.41176%;
|
|
}
|
|
|
|
.sheet-col-6-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-17 {
|
|
width: 35.29412%;
|
|
}
|
|
|
|
.sheet-offset-6-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-17 {
|
|
margin-left: 35.29412%;
|
|
}
|
|
|
|
.sheet-col-7-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-17 {
|
|
width: 41.17647%;
|
|
}
|
|
|
|
.sheet-offset-7-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-17 {
|
|
margin-left: 41.17647%;
|
|
}
|
|
|
|
.sheet-col-8-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-17 {
|
|
width: 47.05882%;
|
|
}
|
|
|
|
.sheet-offset-8-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-17 {
|
|
margin-left: 47.05882%;
|
|
}
|
|
|
|
.sheet-col-9-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-17 {
|
|
width: 52.94118%;
|
|
}
|
|
|
|
.sheet-offset-9-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-17 {
|
|
margin-left: 52.94118%;
|
|
}
|
|
|
|
.sheet-col-10-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-17 {
|
|
width: 58.82353%;
|
|
}
|
|
|
|
.sheet-offset-10-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-17 {
|
|
margin-left: 58.82353%;
|
|
}
|
|
|
|
.sheet-col-11-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-17 {
|
|
width: 64.70588%;
|
|
}
|
|
|
|
.sheet-offset-11-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-17 {
|
|
margin-left: 64.70588%;
|
|
}
|
|
|
|
.sheet-col-12-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-17 {
|
|
width: 70.58824%;
|
|
}
|
|
|
|
.sheet-offset-12-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-12-17 {
|
|
margin-left: 70.58824%;
|
|
}
|
|
|
|
.sheet-col-13-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-17 {
|
|
width: 76.47059%;
|
|
}
|
|
|
|
.sheet-offset-13-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-17 {
|
|
margin-left: 76.47059%;
|
|
}
|
|
|
|
.sheet-col-14-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-17 {
|
|
width: 82.35294%;
|
|
}
|
|
|
|
.sheet-offset-14-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-14-17 {
|
|
margin-left: 82.35294%;
|
|
}
|
|
|
|
.sheet-col-15-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-17 {
|
|
width: 88.23529%;
|
|
}
|
|
|
|
.sheet-offset-15-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-17 {
|
|
margin-left: 88.23529%;
|
|
}
|
|
|
|
.sheet-col-16-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-17 {
|
|
width: 94.11765%;
|
|
}
|
|
|
|
.sheet-offset-16-17,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-16-17 {
|
|
margin-left: 94.11765%;
|
|
}
|
|
|
|
.sheet-col-1-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-18 {
|
|
width: 5.55556%;
|
|
}
|
|
|
|
.sheet-offset-1-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-18 {
|
|
margin-left: 5.55556%;
|
|
}
|
|
|
|
.sheet-col-5-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-18 {
|
|
width: 27.77778%;
|
|
}
|
|
|
|
.sheet-offset-5-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-18 {
|
|
margin-left: 27.77778%;
|
|
}
|
|
|
|
.sheet-col-7-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-18 {
|
|
width: 38.88889%;
|
|
}
|
|
|
|
.sheet-offset-7-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-18 {
|
|
margin-left: 38.88889%;
|
|
}
|
|
|
|
.sheet-col-11-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-18 {
|
|
width: 61.11111%;
|
|
}
|
|
|
|
.sheet-offset-11-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-18 {
|
|
margin-left: 61.11111%;
|
|
}
|
|
|
|
.sheet-col-13-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-18 {
|
|
width: 72.22222%;
|
|
}
|
|
|
|
.sheet-offset-13-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-18 {
|
|
margin-left: 72.22222%;
|
|
}
|
|
|
|
.sheet-col-15-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-18 {
|
|
width: 83.33333%;
|
|
}
|
|
|
|
.sheet-offset-15-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-18 {
|
|
margin-left: 83.33333%;
|
|
}
|
|
|
|
.sheet-col-17-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-18 {
|
|
width: 94.44444%;
|
|
}
|
|
|
|
.sheet-offset-17-18,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-18 {
|
|
margin-left: 94.44444%;
|
|
}
|
|
|
|
.sheet-col-1-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-19 {
|
|
width: 5.26316%;
|
|
}
|
|
|
|
.sheet-offset-1-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-19 {
|
|
margin-left: 5.26316%;
|
|
}
|
|
|
|
.sheet-col-2-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-19 {
|
|
width: 10.52632%;
|
|
}
|
|
|
|
.sheet-offset-2-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-19 {
|
|
margin-left: 10.52632%;
|
|
}
|
|
|
|
.sheet-col-3-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-19 {
|
|
width: 15.78947%;
|
|
}
|
|
|
|
.sheet-offset-3-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-19 {
|
|
margin-left: 15.78947%;
|
|
}
|
|
|
|
.sheet-col-4-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-19 {
|
|
width: 21.05263%;
|
|
}
|
|
|
|
.sheet-offset-4-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-19 {
|
|
margin-left: 21.05263%;
|
|
}
|
|
|
|
.sheet-col-5-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-19 {
|
|
width: 26.31579%;
|
|
}
|
|
|
|
.sheet-offset-5-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-19 {
|
|
margin-left: 26.31579%;
|
|
}
|
|
|
|
.sheet-col-6-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-19 {
|
|
width: 31.57895%;
|
|
}
|
|
|
|
.sheet-offset-6-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-19 {
|
|
margin-left: 31.57895%;
|
|
}
|
|
|
|
.sheet-col-7-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-19 {
|
|
width: 36.84211%;
|
|
}
|
|
|
|
.sheet-offset-7-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-19 {
|
|
margin-left: 36.84211%;
|
|
}
|
|
|
|
.sheet-col-8-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-19 {
|
|
width: 42.10526%;
|
|
}
|
|
|
|
.sheet-offset-8-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-19 {
|
|
margin-left: 42.10526%;
|
|
}
|
|
|
|
.sheet-col-9-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-19 {
|
|
width: 47.36842%;
|
|
}
|
|
|
|
.sheet-offset-9-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-19 {
|
|
margin-left: 47.36842%;
|
|
}
|
|
|
|
.sheet-col-10-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-19 {
|
|
width: 52.63158%;
|
|
}
|
|
|
|
.sheet-offset-10-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-19 {
|
|
margin-left: 52.63158%;
|
|
}
|
|
|
|
.sheet-col-11-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-19 {
|
|
width: 57.89474%;
|
|
}
|
|
|
|
.sheet-offset-11-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-19 {
|
|
margin-left: 57.89474%;
|
|
}
|
|
|
|
.sheet-col-12-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-19 {
|
|
width: 63.15789%;
|
|
}
|
|
|
|
.sheet-offset-12-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-12-19 {
|
|
margin-left: 63.15789%;
|
|
}
|
|
|
|
.sheet-col-13-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-19 {
|
|
width: 68.42105%;
|
|
}
|
|
|
|
.sheet-offset-13-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-19 {
|
|
margin-left: 68.42105%;
|
|
}
|
|
|
|
.sheet-col-14-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-19 {
|
|
width: 73.68421%;
|
|
}
|
|
|
|
.sheet-offset-14-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-14-19 {
|
|
margin-left: 73.68421%;
|
|
}
|
|
|
|
.sheet-col-15-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-19 {
|
|
width: 78.94737%;
|
|
}
|
|
|
|
.sheet-offset-15-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-19 {
|
|
margin-left: 78.94737%;
|
|
}
|
|
|
|
.sheet-col-16-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-19 {
|
|
width: 84.21053%;
|
|
}
|
|
|
|
.sheet-offset-16-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-16-19 {
|
|
margin-left: 84.21053%;
|
|
}
|
|
|
|
.sheet-col-17-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-19 {
|
|
width: 89.47368%;
|
|
}
|
|
|
|
.sheet-offset-17-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-19 {
|
|
margin-left: 89.47368%;
|
|
}
|
|
|
|
.sheet-col-18-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-18-19 {
|
|
width: 94.73684%;
|
|
}
|
|
|
|
.sheet-offset-18-19,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-18-19 {
|
|
margin-left: 94.73684%;
|
|
}
|
|
|
|
.sheet-col-1-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-20 {
|
|
width: 5%;
|
|
}
|
|
|
|
.sheet-offset-1-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-20 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
.sheet-col-3-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-20 {
|
|
width: 15%;
|
|
}
|
|
|
|
.sheet-offset-3-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-20 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
.sheet-col-7-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-20 {
|
|
width: 35%;
|
|
}
|
|
|
|
.sheet-offset-7-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-20 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
.sheet-col-9-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-20 {
|
|
width: 45%;
|
|
}
|
|
|
|
.sheet-offset-9-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-20 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
.sheet-col-11-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-20 {
|
|
width: 55%;
|
|
}
|
|
|
|
.sheet-offset-11-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-20 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
.sheet-col-13-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-20 {
|
|
width: 65%;
|
|
}
|
|
|
|
.sheet-offset-13-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-20 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
.sheet-col-15-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-20 {
|
|
width: 75%;
|
|
}
|
|
|
|
.sheet-offset-15-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-20 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
.sheet-col-17-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-20 {
|
|
width: 85%;
|
|
}
|
|
|
|
.sheet-offset-17-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-20 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
.sheet-col-19-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-20 {
|
|
width: 95%;
|
|
}
|
|
|
|
.sheet-offset-19-20,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-19-20 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
.sheet-col-1-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-21 {
|
|
width: 4.7619%;
|
|
}
|
|
|
|
.sheet-offset-1-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-21 {
|
|
margin-left: 4.7619%;
|
|
}
|
|
|
|
.sheet-col-2-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-21 {
|
|
width: 9.52381%;
|
|
}
|
|
|
|
.sheet-offset-2-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-21 {
|
|
margin-left: 9.52381%;
|
|
}
|
|
|
|
.sheet-col-4-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-21 {
|
|
width: 19.04762%;
|
|
}
|
|
|
|
.sheet-offset-4-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-21 {
|
|
margin-left: 19.04762%;
|
|
}
|
|
|
|
.sheet-col-5-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-21 {
|
|
width: 23.80952%;
|
|
}
|
|
|
|
.sheet-offset-5-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-21 {
|
|
margin-left: 23.80952%;
|
|
}
|
|
|
|
.sheet-col-6-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-21 {
|
|
width: 28.57143%;
|
|
}
|
|
|
|
.sheet-offset-6-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-21 {
|
|
margin-left: 28.57143%;
|
|
}
|
|
|
|
.sheet-col-8-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-21 {
|
|
width: 38.09524%;
|
|
}
|
|
|
|
.sheet-offset-8-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-21 {
|
|
margin-left: 38.09524%;
|
|
}
|
|
|
|
.sheet-col-9-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-21 {
|
|
width: 42.85714%;
|
|
}
|
|
|
|
.sheet-offset-9-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-21 {
|
|
margin-left: 42.85714%;
|
|
}
|
|
|
|
.sheet-col-10-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-21 {
|
|
width: 47.61905%;
|
|
}
|
|
|
|
.sheet-offset-10-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-21 {
|
|
margin-left: 47.61905%;
|
|
}
|
|
|
|
.sheet-col-11-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-21 {
|
|
width: 52.38095%;
|
|
}
|
|
|
|
.sheet-offset-11-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-21 {
|
|
margin-left: 52.38095%;
|
|
}
|
|
|
|
.sheet-col-12-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-21 {
|
|
width: 57.14286%;
|
|
}
|
|
|
|
.sheet-offset-12-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-12-21 {
|
|
margin-left: 57.14286%;
|
|
}
|
|
|
|
.sheet-col-13-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-21 {
|
|
width: 61.90476%;
|
|
}
|
|
|
|
.sheet-offset-13-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-21 {
|
|
margin-left: 61.90476%;
|
|
}
|
|
|
|
.sheet-col-14-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-21 {
|
|
width: 66.66667%;
|
|
}
|
|
|
|
.sheet-offset-14-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-14-21 {
|
|
margin-left: 66.66667%;
|
|
}
|
|
|
|
.sheet-col-15-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-21 {
|
|
width: 71.42857%;
|
|
}
|
|
|
|
.sheet-offset-15-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-21 {
|
|
margin-left: 71.42857%;
|
|
}
|
|
|
|
.sheet-col-16-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-21 {
|
|
width: 76.19048%;
|
|
}
|
|
|
|
.sheet-offset-16-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-16-21 {
|
|
margin-left: 76.19048%;
|
|
}
|
|
|
|
.sheet-col-17-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-21 {
|
|
width: 80.95238%;
|
|
}
|
|
|
|
.sheet-offset-17-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-21 {
|
|
margin-left: 80.95238%;
|
|
}
|
|
|
|
.sheet-col-18-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-18-21 {
|
|
width: 85.71429%;
|
|
}
|
|
|
|
.sheet-offset-18-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-18-21 {
|
|
margin-left: 85.71429%;
|
|
}
|
|
|
|
.sheet-col-19-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-21 {
|
|
width: 90.47619%;
|
|
}
|
|
|
|
.sheet-offset-19-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-19-21 {
|
|
margin-left: 90.47619%;
|
|
}
|
|
|
|
.sheet-col-20-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-20-21 {
|
|
width: 95.2381%;
|
|
}
|
|
|
|
.sheet-offset-20-21,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-20-21 {
|
|
margin-left: 95.2381%;
|
|
}
|
|
|
|
.sheet-col-1-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-22 {
|
|
width: 4.54545%;
|
|
}
|
|
|
|
.sheet-offset-1-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-22 {
|
|
margin-left: 4.54545%;
|
|
}
|
|
|
|
.sheet-col-3-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-22 {
|
|
width: 13.63636%;
|
|
}
|
|
|
|
.sheet-offset-3-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-22 {
|
|
margin-left: 13.63636%;
|
|
}
|
|
|
|
.sheet-col-5-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-22 {
|
|
width: 22.72727%;
|
|
}
|
|
|
|
.sheet-offset-5-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-22 {
|
|
margin-left: 22.72727%;
|
|
}
|
|
|
|
.sheet-col-7-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-22 {
|
|
width: 31.81818%;
|
|
}
|
|
|
|
.sheet-offset-7-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-22 {
|
|
margin-left: 31.81818%;
|
|
}
|
|
|
|
.sheet-col-9-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-22 {
|
|
width: 40.90909%;
|
|
}
|
|
|
|
.sheet-offset-9-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-22 {
|
|
margin-left: 40.90909%;
|
|
}
|
|
|
|
.sheet-col-13-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-22 {
|
|
width: 59.09091%;
|
|
}
|
|
|
|
.sheet-offset-13-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-22 {
|
|
margin-left: 59.09091%;
|
|
}
|
|
|
|
.sheet-col-15-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-22 {
|
|
width: 68.18182%;
|
|
}
|
|
|
|
.sheet-offset-15-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-22 {
|
|
margin-left: 68.18182%;
|
|
}
|
|
|
|
.sheet-col-17-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-22 {
|
|
width: 77.27273%;
|
|
}
|
|
|
|
.sheet-offset-17-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-22 {
|
|
margin-left: 77.27273%;
|
|
}
|
|
|
|
.sheet-col-19-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-22 {
|
|
width: 86.36364%;
|
|
}
|
|
|
|
.sheet-offset-19-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-19-22 {
|
|
margin-left: 86.36364%;
|
|
}
|
|
|
|
.sheet-col-21-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-21-22 {
|
|
width: 95.45455%;
|
|
}
|
|
|
|
.sheet-offset-21-22,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-21-22 {
|
|
margin-left: 95.45455%;
|
|
}
|
|
|
|
.sheet-col-1-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-23 {
|
|
width: 4.34783%;
|
|
}
|
|
|
|
.sheet-offset-1-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-23 {
|
|
margin-left: 4.34783%;
|
|
}
|
|
|
|
.sheet-col-2-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-2-23 {
|
|
width: 8.69565%;
|
|
}
|
|
|
|
.sheet-offset-2-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-2-23 {
|
|
margin-left: 8.69565%;
|
|
}
|
|
|
|
.sheet-col-3-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-3-23 {
|
|
width: 13.04348%;
|
|
}
|
|
|
|
.sheet-offset-3-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-3-23 {
|
|
margin-left: 13.04348%;
|
|
}
|
|
|
|
.sheet-col-4-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-4-23 {
|
|
width: 17.3913%;
|
|
}
|
|
|
|
.sheet-offset-4-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-4-23 {
|
|
margin-left: 17.3913%;
|
|
}
|
|
|
|
.sheet-col-5-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-23 {
|
|
width: 21.73913%;
|
|
}
|
|
|
|
.sheet-offset-5-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-23 {
|
|
margin-left: 21.73913%;
|
|
}
|
|
|
|
.sheet-col-6-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-6-23 {
|
|
width: 26.08696%;
|
|
}
|
|
|
|
.sheet-offset-6-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-6-23 {
|
|
margin-left: 26.08696%;
|
|
}
|
|
|
|
.sheet-col-7-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-23 {
|
|
width: 30.43478%;
|
|
}
|
|
|
|
.sheet-offset-7-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-23 {
|
|
margin-left: 30.43478%;
|
|
}
|
|
|
|
.sheet-col-8-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-8-23 {
|
|
width: 34.78261%;
|
|
}
|
|
|
|
.sheet-offset-8-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-8-23 {
|
|
margin-left: 34.78261%;
|
|
}
|
|
|
|
.sheet-col-9-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-23 {
|
|
width: 39.13043%;
|
|
}
|
|
|
|
.sheet-offset-9-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-23 {
|
|
margin-left: 39.13043%;
|
|
}
|
|
|
|
.sheet-col-10-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-10-23 {
|
|
width: 43.47826%;
|
|
}
|
|
|
|
.sheet-offset-10-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-10-23 {
|
|
margin-left: 43.47826%;
|
|
}
|
|
|
|
.sheet-col-11-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-23 {
|
|
width: 47.82609%;
|
|
}
|
|
|
|
.sheet-offset-11-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-23 {
|
|
margin-left: 47.82609%;
|
|
}
|
|
|
|
.sheet-col-12-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-12-23 {
|
|
width: 52.17391%;
|
|
}
|
|
|
|
.sheet-offset-12-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-12-23 {
|
|
margin-left: 52.17391%;
|
|
}
|
|
|
|
.sheet-col-13-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-23 {
|
|
width: 56.52174%;
|
|
}
|
|
|
|
.sheet-offset-13-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-23 {
|
|
margin-left: 56.52174%;
|
|
}
|
|
|
|
.sheet-col-14-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-14-23 {
|
|
width: 60.86957%;
|
|
}
|
|
|
|
.sheet-offset-14-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-14-23 {
|
|
margin-left: 60.86957%;
|
|
}
|
|
|
|
.sheet-col-15-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-23 {
|
|
width: 65.21739%;
|
|
}
|
|
|
|
.sheet-offset-15-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-23 {
|
|
margin-left: 65.21739%;
|
|
}
|
|
|
|
.sheet-col-16-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-16-23 {
|
|
width: 69.56522%;
|
|
}
|
|
|
|
.sheet-offset-16-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-16-23 {
|
|
margin-left: 69.56522%;
|
|
}
|
|
|
|
.sheet-col-17-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-23 {
|
|
width: 73.91304%;
|
|
}
|
|
|
|
.sheet-offset-17-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-23 {
|
|
margin-left: 73.91304%;
|
|
}
|
|
|
|
.sheet-col-18-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-18-23 {
|
|
width: 78.26087%;
|
|
}
|
|
|
|
.sheet-offset-18-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-18-23 {
|
|
margin-left: 78.26087%;
|
|
}
|
|
|
|
.sheet-col-19-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-23 {
|
|
width: 82.6087%;
|
|
}
|
|
|
|
.sheet-offset-19-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-19-23 {
|
|
margin-left: 82.6087%;
|
|
}
|
|
|
|
.sheet-col-20-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-20-23 {
|
|
width: 86.95652%;
|
|
}
|
|
|
|
.sheet-offset-20-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-20-23 {
|
|
margin-left: 86.95652%;
|
|
}
|
|
|
|
.sheet-col-21-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-21-23 {
|
|
width: 91.30435%;
|
|
}
|
|
|
|
.sheet-offset-21-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-21-23 {
|
|
margin-left: 91.30435%;
|
|
}
|
|
|
|
.sheet-col-22-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-22-23 {
|
|
width: 95.65217%;
|
|
}
|
|
|
|
.sheet-offset-22-23,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-22-23 {
|
|
margin-left: 95.65217%;
|
|
}
|
|
|
|
.sheet-col-1-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-1-24 {
|
|
width: 4.16667%;
|
|
}
|
|
|
|
.sheet-offset-1-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-1-24 {
|
|
margin-left: 4.16667%;
|
|
}
|
|
|
|
.sheet-col-5-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-5-24 {
|
|
width: 20.83333%;
|
|
}
|
|
|
|
.sheet-offset-5-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-5-24 {
|
|
margin-left: 20.83333%;
|
|
}
|
|
|
|
.sheet-col-7-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-7-24 {
|
|
width: 29.16667%;
|
|
}
|
|
|
|
.sheet-offset-7-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-7-24 {
|
|
margin-left: 29.16667%;
|
|
}
|
|
|
|
.sheet-col-9-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-9-24 {
|
|
width: 37.5%;
|
|
}
|
|
|
|
.sheet-offset-9-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-9-24 {
|
|
margin-left: 37.5%;
|
|
}
|
|
|
|
.sheet-col-11-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-11-24 {
|
|
width: 45.83333%;
|
|
}
|
|
|
|
.sheet-offset-11-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-11-24 {
|
|
margin-left: 45.83333%;
|
|
}
|
|
|
|
.sheet-col-13-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-13-24 {
|
|
width: 54.16667%;
|
|
}
|
|
|
|
.sheet-offset-13-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-13-24 {
|
|
margin-left: 54.16667%;
|
|
}
|
|
|
|
.sheet-col-15-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-15-24 {
|
|
width: 62.5%;
|
|
}
|
|
|
|
.sheet-offset-15-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-15-24 {
|
|
margin-left: 62.5%;
|
|
}
|
|
|
|
.sheet-col-17-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-17-24 {
|
|
width: 70.83333%;
|
|
}
|
|
|
|
.sheet-offset-17-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-17-24 {
|
|
margin-left: 70.83333%;
|
|
}
|
|
|
|
.sheet-col-19-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-19-24 {
|
|
width: 79.16667%;
|
|
}
|
|
|
|
.sheet-offset-19-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-19-24 {
|
|
margin-left: 79.16667%;
|
|
}
|
|
|
|
.sheet-col-21-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-21-24 {
|
|
width: 87.5%;
|
|
}
|
|
|
|
.sheet-offset-21-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-offset-21-24 {
|
|
margin-left: 87.5%;
|
|
}
|
|
|
|
.sheet-col-23-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-col-23-24 {
|
|
width: 95.83333%;
|
|
}
|
|
|
|
.sheet-offset-23-24,
|
|
.sheet-rolltemplate-besmDefault .sheet-23-24 {
|
|
margin-left: 95.83333%;
|
|
}
|
|
|
|
.sheet-row-r,
|
|
.sheet-rolltemplate-besmDefault .sheet-row-r {
|
|
letter-spacing: -0.31em;
|
|
*letter-spacing: normal;
|
|
word-spacing: -0.43em;
|
|
}
|
|
|
|
.sheet-opera-only:-o-prefocus,
|
|
.sheet-row-r,
|
|
.sheet-rolltemplate-besmDefault .sheet-opera-only:-o-prefocus,
|
|
.sheet-rolltemplate-besmDefault .sheet-row-r {
|
|
word-spacing: -0.43em;
|
|
}
|
|
|
|
.sheet-row-r img,
|
|
.sheet-rolltemplate-besmDefault .sheet-row-r img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
|
|
/* End custom Pure grid css (24 cols) */ |