mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
1340 lines
25 KiB
CSS
Executable File
1340 lines
25 KiB
CSS
Executable File
.charsheet {
|
|
background: url(https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Dungeon%20World%20by%20Roll20/images/background.png);
|
|
background-repeat: repeat-y;
|
|
background-color: rgb(230, 231, 233);
|
|
height: auto;
|
|
border: 1px solid rgb(35, 31, 32);
|
|
min-width: 820px;
|
|
}
|
|
|
|
.charsheet .sheet-container label {
|
|
font-weight: normal;
|
|
font-size: medium;
|
|
color: white;
|
|
line-height: normal;
|
|
text-align: unset;
|
|
}
|
|
|
|
.sheet-flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
}
|
|
|
|
.sheet-flex-right {
|
|
justify-content: flex-end !important;
|
|
}
|
|
|
|
.sheet-flex-left {
|
|
justify-content: flex-start !important;
|
|
}
|
|
|
|
.sheet-compendium-drop-target.dropping {
|
|
opacity: 0.5;
|
|
transition: opacity .15s ease-in-out;
|
|
-moz-transition: opacity .15s ease-in-out;
|
|
-webkit-transition: opacity .15s ease-in-out;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.sheet-compendium_warning {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-tip-confirm-flag {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-tip-confirm-flag:checked ~ .sheet-class-tip {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-tip-confirm-flag:not(:checked) ~ .sheet-class-tip {
|
|
display: block;
|
|
position: absolute;
|
|
top: 12.8em;
|
|
left: 10.7em;
|
|
background: white;
|
|
z-index: 99;
|
|
border: 2px solid black;
|
|
border-radius: 6px;
|
|
padding: 5px;
|
|
width: 701px;
|
|
height: 85px;
|
|
}
|
|
|
|
.sheet-class-tip .sheet-cancel-button {
|
|
float: right;
|
|
}
|
|
|
|
.sheet-class-tip button[type=action] {
|
|
color: black;
|
|
}
|
|
|
|
.sheet-class-tip button[type=action]:hover {
|
|
border-color: #6e9ec6;
|
|
}
|
|
|
|
.sheet-container.active-drop-target.dropping ~ .sheet-compendium_warning {
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
background: white;
|
|
left: 50%;
|
|
z-index: 100;
|
|
border: 2px solid black;
|
|
width: 300px;
|
|
height: 85px;
|
|
text-align: center;
|
|
margin: -70px 0 0 -170px;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
/* start npcstuff */
|
|
|
|
.sheet-npc-toggler {
|
|
width: 80px;
|
|
height: 16px;
|
|
background: #333;
|
|
margin: 0px 10px 5px 3px;
|
|
position: relative;
|
|
border-radius: 6px;
|
|
}
|
|
.sheet-npc-toggler:after {
|
|
content: 'PC';
|
|
color: white;
|
|
position: absolute;
|
|
right: 8px;
|
|
z-index: 0;
|
|
font: 12px/18px Arial, sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
.sheet-npc-toggler:before {
|
|
content: 'NPC';
|
|
color: white;
|
|
position: absolute;
|
|
left: 8px;
|
|
z-index: 0;
|
|
font: 12px/18px Arial, sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* french npc/pc toggler */
|
|
|
|
.charsheet.lang-fr .sheet-npc-toggler:after {
|
|
content: 'PJ';
|
|
color: white;
|
|
position: absolute;
|
|
right: 8px;
|
|
z-index: 0;
|
|
font: 12px/18px Arial, sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
.charsheet.lang-fr .sheet-npc-toggler:before {
|
|
content: 'PNJ';
|
|
color: white;
|
|
position: absolute;
|
|
left: 8px;
|
|
z-index: 0;
|
|
font: 12px/18px Arial, sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
/* END french npc/pc toggler */
|
|
|
|
.sheet-npc-toggler label {
|
|
display: block;
|
|
width: 26px;
|
|
height: 10px;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 3px;
|
|
left: 3px;
|
|
z-index: 1;
|
|
background: white;
|
|
border 1px solid black;
|
|
border-radius: 6px;
|
|
-webkit-transition: all 0.2s ease;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
|
|
}
|
|
.sheet-npc-toggler input[type=checkbox] {
|
|
visibility: hidden;
|
|
}
|
|
.sheet-is-npc-label-sib:checked + label {
|
|
left: 40px;
|
|
}
|
|
|
|
.sheet-is-npc:checked ~ .sheet-top-container,
|
|
.sheet-is-npc:checked ~ .sheet-navigation-container,
|
|
.sheet-is-npc:checked ~ .sheet-page {
|
|
display: none !important;
|
|
}
|
|
|
|
.sheet-npc-container {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-is-npc:checked ~ .sheet-npc-container {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-npc-container input[type="text"],
|
|
.sheet-npc-container input[type="number"] {
|
|
border-radius: 0px;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-top: none;
|
|
border-bottom: 1px solid white;
|
|
font-weight: bold;
|
|
min-width: 2em;
|
|
}
|
|
|
|
.sheet-npc-container input[type="text"]:focus,
|
|
.sheet-npc-container input[type="number"]:focus {
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-npc-container input,
|
|
.sheet-npc-container textarea {
|
|
background-color: rgba(150, 150, 150, 0.1);
|
|
}
|
|
|
|
.sheet-npc-container textarea {
|
|
width: calc(100% - 10px);
|
|
height: 90px;
|
|
resize: vertical;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.sheet-npc-container input[type="text"] {
|
|
width: 10em;
|
|
}
|
|
|
|
.sheet-npc-container input[type="number"] {
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-npc-container .sheet-flex-row {
|
|
width: 95%;
|
|
justify-content: space-between;
|
|
margin: 5px;
|
|
}
|
|
|
|
.sheet-npc-container .sheet-npc-name {
|
|
font-size: larger;
|
|
}
|
|
|
|
.sheet-npc-container .sheet-npc-tags {
|
|
font-style: italic;
|
|
font-weight: normal !important;
|
|
}
|
|
|
|
.sheet-npc-attack-roll {
|
|
width: 5em !important;
|
|
}
|
|
|
|
.sheet-npc-container button[type=roll] {
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
.sheet-npc-container fieldset {
|
|
margin-top: 6px;
|
|
width: 50%;
|
|
}
|
|
|
|
.sheet-npc-moves .sheet-npc-move {
|
|
width: 20em !important;
|
|
}
|
|
|
|
.sheet-npc-header {
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
border-top: 1px solid black;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
/* end npcstuff */
|
|
|
|
.sheet-rolltemplate-move .inlinerollresult,
|
|
.sheet-rolltemplate-move .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-move .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-move .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-dwgeneral .inlinerollresult,
|
|
.sheet-rolltemplate-dwgeneral .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-dwgeneral .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-dwgeneral .inlinerollresult.importantroll,
|
|
.sheet-rolltemplate-spell .inlinerollresult,
|
|
.sheet-rolltemplate-spell .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-spell .inlinerollresult.fullcrit,
|
|
.sheet-rolltemplate-spell .inlinerollresult.importantroll {
|
|
background-color: transparent;
|
|
border: none;
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
input[type=radio],
|
|
.sheet-invisible {
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
height: 1px; margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
|
|
div.sheet-page {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-hpage-main:checked ~ div.sheet-main-page,
|
|
.sheet-hpage-sub:checked ~ div.sheet-sub-page,
|
|
.sheet-hpage-settings:checked ~ div.sheet-settings-page {
|
|
display: block;
|
|
}
|
|
|
|
button.repcontrol_add,
|
|
button.repcontrol_edit {
|
|
font-size: .8em;
|
|
padding: 1px 3px;
|
|
margin: 0px 5px;
|
|
}
|
|
|
|
button.repcontrol_del {
|
|
padding: 0 3px 2px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: -8px;
|
|
z-index: 8
|
|
}
|
|
|
|
button.repcontrol_add,
|
|
button.repcontrol_del,
|
|
button.repcontrol_edit {
|
|
border-radius: 3px
|
|
}
|
|
|
|
.btn.repcontrol_move {
|
|
background: 0 0;
|
|
border: 0;
|
|
font-size: 1.2em;
|
|
font-weight: 700;
|
|
padding: 2px 0;
|
|
position: relative;
|
|
top: 5px;
|
|
z-index: 8
|
|
}
|
|
|
|
.repcontainer .repitem .itemcontrol {
|
|
margin-top: -6px;
|
|
}
|
|
|
|
p {
|
|
margin: 0
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
margin: 0 0 0 15px
|
|
}
|
|
|
|
.repcontrol::after {
|
|
clear: both;
|
|
content: ' ';
|
|
display: block;
|
|
font-size: 0;
|
|
height: 0;
|
|
visibility: hidden
|
|
}
|
|
/*
|
|
label {
|
|
font-size: 1em;
|
|
font-weight: 400;
|
|
margin-bottom: 0;
|
|
padding-right: 0;
|
|
text-align: inherit;
|
|
width: auto
|
|
}*/
|
|
|
|
.repcontrol_add {
|
|
float: left
|
|
}
|
|
|
|
button[type=roll]::before {
|
|
content: " " !important;
|
|
}
|
|
|
|
button[type=roll]:hover {
|
|
color: #90CAF9 !important;
|
|
}
|
|
|
|
button[type=roll]:hover:disabled {
|
|
color: #90CAF9 !important;
|
|
}
|
|
|
|
input[type=number]::-webkit-inner-spin-button,
|
|
input[type=number]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.sheet-container input[type=number] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
.sheet-navigation-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.sheet-roll-mods input[type=number] {
|
|
border: 1px solid black;
|
|
text-align: center;
|
|
height: 1.7em;
|
|
width: 2em;
|
|
}
|
|
|
|
.sheet-container button[type=roll] {
|
|
background-color: transparent;
|
|
border: none;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-container button[type=roll]:hover {
|
|
color: #EC2127;
|
|
}
|
|
|
|
.sheet-label {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-smaller {
|
|
font-size: smaller;
|
|
}
|
|
|
|
.sheet-container {
|
|
min-width: 820px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.sheet-top-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sheet-rows-container {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sheet-header-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sheet-header-container input {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Will want this to change--maybe based on a global sheet default? */
|
|
|
|
.sheet-gamebanner {
|
|
flex: 0 0 80px;
|
|
padding-top: 10px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
background-image: url("https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Dungeon%20World%20by%20Roll20/images/dw-logo-bg.png");
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.sheet-name-container {
|
|
flex: 1 1 400px;
|
|
margin: 8px;
|
|
padding: 5px;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
border: 1px solid;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.sheet-name-container input {
|
|
border: 0px solid;
|
|
margin-left: 5px;
|
|
flex: 1 1 auto;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-progression-container {
|
|
flex: 1 1 20%;
|
|
flex-wrap: nowrap;
|
|
margin: 5px;
|
|
padding: 2px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.sheet-progression-container input {
|
|
flex: 0 1 auto;
|
|
border: 0px solid;
|
|
border-radius: 50%;
|
|
width: 30px;
|
|
height: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-xp-container {
|
|
margin-left: 10px;
|
|
padding: 5px;
|
|
background-color: white;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.sheet-class-container {
|
|
flex: 0 1 auto;
|
|
margin: 8px;
|
|
padding: 5px;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
border: 1px solid;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.sheet-class-container .sheet-label {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-class-container input {
|
|
border: 0px solid;
|
|
margin-left: 5px;
|
|
flex: 1 1 300px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-mid-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
max-height: 230px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.sheet-mid-header {
|
|
flex: 0 0 20px;
|
|
border-radius: 2px;
|
|
margin: 5px;
|
|
color: white;
|
|
background-color: rgb(35, 31, 32);
|
|
}
|
|
|
|
.sheet-sub-container .sheet-mid-header {
|
|
flex: 0 0 30px;
|
|
}
|
|
|
|
.sheet-mid-header button[type=roll] {
|
|
color: white;
|
|
}
|
|
|
|
.sheet-mid-header button[type=roll]:hover {
|
|
color: #EC2127;
|
|
}
|
|
|
|
.sheet-mid-container .sheet-label,
|
|
.sheet-lower-container .sheet-label,
|
|
.sheet-sub-container .sheet-label {
|
|
margin: 5px;
|
|
}
|
|
|
|
.sheet-mid-module {
|
|
flex: 1 1 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.sheet-mid-container textarea,
|
|
.sheet-misc-container textarea,
|
|
.sheet-lower-container textarea,
|
|
.sheet-sub-container textarea {
|
|
width: calc(100% - 20px);
|
|
resize: vertical;
|
|
border: 1px solid;
|
|
margin: 5px;
|
|
margin-top: -5px;
|
|
}
|
|
|
|
.sheet-look textarea {
|
|
height: 83px;
|
|
}
|
|
|
|
.sheet-alignment textarea {
|
|
height: 54px;
|
|
}
|
|
|
|
|
|
.sheet-vital {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.sheet-vital input,
|
|
.sheet-alignment input,
|
|
.sheet-bonds input,
|
|
.sheet-race input,
|
|
.sheet-gmod input {
|
|
width: calc(100% - 10px);
|
|
margin: 5px;
|
|
margin-top: -4px;
|
|
font-weight: bold;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.sheet-gmod input {
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
|
|
.sheet-moves input,
|
|
.sheet-spells input,
|
|
.sheet-gear input,
|
|
.sheet-gmod input {
|
|
margin: 5px;
|
|
font-weight: bold;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.sheet-armor-container,
|
|
.sheet-hp-container,
|
|
.sheet-damage-container {
|
|
position: relative;
|
|
}
|
|
|
|
.sheet-armor-container input[type=number],
|
|
.sheet-hp-container input[type=number] {
|
|
position: absolute;
|
|
top: 0px;
|
|
text-align: center;
|
|
width: 30px;
|
|
}
|
|
|
|
.sheet-armor-container input[type=number] {
|
|
right: 30px;
|
|
}
|
|
|
|
.sheet-hitpoints {
|
|
right: 50px;
|
|
}
|
|
|
|
.sheet-max-hitpoints {
|
|
right: 15px;
|
|
}
|
|
|
|
.sheet-damage-container select {
|
|
position: absolute;
|
|
right: 25px;
|
|
width: 56px;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.sheet-stats-container {
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
width: 67%
|
|
}
|
|
|
|
.sheet-misc-container {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 260px;
|
|
}
|
|
|
|
.sheet-stats {
|
|
flex: 0 1 auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-evenly;
|
|
max-height: 244px;
|
|
}
|
|
|
|
.sheet-dw-statbox {
|
|
flex: 0 0 auto;
|
|
color: white;
|
|
background-color: rgb(35, 31, 32);
|
|
width: 160px;
|
|
max-height: 84px;
|
|
padding: 2px;
|
|
border: 0px solid;
|
|
border-radius: 2px;
|
|
margin: 4px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
|
|
.sheet-dw-stat-header {
|
|
font-weight: bold;
|
|
color: black;
|
|
background-color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.sheet-dw-stat-debility {
|
|
position: relative;
|
|
right: 5px;
|
|
top: 10px;
|
|
text-align: right;
|
|
font-size: smaller;
|
|
}
|
|
|
|
.sheet-dw-statbox .sheet-dw-stat-debility label {
|
|
color: white;
|
|
font-size: smaller;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sheet-dw-stat-header input {
|
|
border-style: none;
|
|
border-bottom: 1px solid black;
|
|
box-shadow: none;
|
|
margin-bottom: 5px;
|
|
width: 25px !important;
|
|
background: none;
|
|
color: inherit;
|
|
text-align: right;
|
|
align-self: flex-end;
|
|
padding-bottom: 0px;
|
|
}
|
|
|
|
button input[disabled=true] {
|
|
font-weight: bold;
|
|
border-style: none;
|
|
box-shadow: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
color: inherit;
|
|
}
|
|
|
|
button span {
|
|
font-weight: bold;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.sheet-dw-stat-footer {
|
|
max-height: 35px;
|
|
}
|
|
|
|
.sheet-dw-stat-circle {
|
|
position:relative;
|
|
top: -12px;
|
|
left: 12px;
|
|
width: 65px;
|
|
height: 65px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
border: 1px solid black;
|
|
text-align: center;
|
|
align-content: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.sheet-dw-statname-short {
|
|
font-size: small;
|
|
}
|
|
|
|
|
|
.sheet-dw-stat-circle input[type=number] {
|
|
width: 40px !important;
|
|
font-size: large;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-bonds {
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.sheet-bonds input[type="text"] {
|
|
width: calc(100% - 30px);
|
|
}
|
|
|
|
.sheet-bonds .sheet-expander,
|
|
.sheet-moves .sheet-expander,
|
|
.sheet-spells .sheet-expander,
|
|
.sheet-gear .sheet-expander,
|
|
.sheet-gmod .sheet-expander {
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: -2px;
|
|
left: 4px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
|
|
.sheet-bonds .sheet-expand-bond + span::before,
|
|
.sheet-moves .sheet-expand-move + span::before,
|
|
.sheet-spells .sheet-expand-spell + span::before,
|
|
.sheet-gear .sheet-expand-gear + span::before,
|
|
.sheet-gmod .sheet-expand-gmod + span::before {
|
|
position: relative;
|
|
top: -3px;
|
|
margin-left: -6px;
|
|
border: solid 1px black;
|
|
border-radius: 2px;
|
|
color: white;
|
|
background-color: rgb(35, 31, 32);
|
|
width: 15px;
|
|
height: 14px;
|
|
display: inline-block;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
content: "◂";
|
|
}
|
|
|
|
.sheet-bond-expansion textarea {
|
|
height: 54px;
|
|
}
|
|
|
|
.sheet-bonds .sheet-expand-bond:checked + span::before,
|
|
.sheet-moves .sheet-expand-move:checked + span::before,
|
|
.sheet-spells .sheet-expand-spell:checked + span::before,
|
|
.sheet-gear .sheet-expand-gear:checked + span::before,
|
|
.sheet-gmod .sheet-expand-gmod:checked + span::before {
|
|
content: "▾";
|
|
}
|
|
|
|
|
|
.sheet-bond-expansion,
|
|
.sheet-move-expansion,
|
|
.sheet-spell-expansion,
|
|
.sheet-gear-expansion,
|
|
.sheet-gmod-expansion {
|
|
display: block;
|
|
transition: max-height 0.5s ease-out;
|
|
opacity: 0;
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sheet-expand-bond:checked ~ .sheet-bond-expansion,
|
|
.sheet-expand-move:checked ~ .sheet-move-expansion,
|
|
.sheet-expand-spell:checked ~ .sheet-spell-expansion,
|
|
.sheet-expand-gear:checked ~ .sheet-gear-expansion ,
|
|
.sheet-expand-gmod:checked ~ .sheet-gmod-expansion {
|
|
display: block;
|
|
opacity: 1;
|
|
max-height: 700px;
|
|
transition: max-height 0.5s ease-in;
|
|
}
|
|
|
|
.sheet-expander:focus + span::before {
|
|
border: 1px solid #6e9ec6 !important;
|
|
}
|
|
|
|
.sheet-lower-container,
|
|
.sheet-sub-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 8px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
|
|
.sheet-moves-header,
|
|
.sheet-spells-header,
|
|
.sheet-gear-header,
|
|
.sheet-coin-header {
|
|
padding-right: .5em;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.sheet-toggler {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.sheet-toggler label {
|
|
z-index: 5;
|
|
position:relative;
|
|
margin: 0;
|
|
width: fit-content;
|
|
width: -moz-fit-content;
|
|
}
|
|
|
|
.sheet-toggler label:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sheet-toggler input[type=radio],
|
|
.sheet-toggler input[type=checkbox] {
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
height: 1px; margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
|
|
.sheet-toggler input[type=radio] + span,
|
|
.sheet-toggler input[type=checkbox] + span,
|
|
button[type=action] {
|
|
border: 1px solid rgb(35, 31, 32);
|
|
border-radius: 6px;
|
|
padding: 1px 6px;
|
|
background-color: white;
|
|
color: #D3D3D3;
|
|
text-align: center;
|
|
font-size: 0.8em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-nav-tabs {
|
|
margin-left: +6px;
|
|
}
|
|
|
|
.sheet-nav-tabs .sheet-toggler input[type=radio] + span {
|
|
border-radius: 2px;
|
|
font-size: 0.9em;
|
|
padding-top: 0.2em;
|
|
}
|
|
|
|
.sheet-nav-tabs .sheet-toggler input[type=radio]:checked + span {
|
|
background-color: unset;
|
|
background-image: linear-gradient(#ffffffb8, transparent);
|
|
border-bottom-color: transparent;
|
|
}
|
|
|
|
.sheet-nav-tabs .sheet-toggler input[type=radio]:focus + span {
|
|
border-bottom-color: transparent;
|
|
}
|
|
|
|
.sheet-toggler input[type=radio]:checked + span,
|
|
.sheet-toggler input[type=checkbox]:checked + span {
|
|
color: rgb(35, 31, 32);
|
|
}
|
|
|
|
.sheet-toggler input[type=radio]:focus + span,
|
|
.sheet-toggler input[type=checkbox]:focus + span {
|
|
border-color: #6e9ec6;
|
|
}
|
|
|
|
.sheet-hold-box {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.sheet-moves-container,
|
|
.sheet-spells-container,
|
|
.sheet-gear-container {
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
width: 67%
|
|
}
|
|
|
|
.sheet-gear-container {
|
|
width: 32%;
|
|
}
|
|
|
|
.sheet-gear-priority:checked ~ .sheet-gear-container {
|
|
width: 67%;
|
|
}
|
|
|
|
.sheet-gear-priority:checked ~ .sheet-spells-container {
|
|
width: 32%;
|
|
}
|
|
|
|
.sheet-gear-item,
|
|
.sheet-gear-weapon,
|
|
.sheet-gear-armor {
|
|
display: none;
|
|
padding-right: 2em;
|
|
}
|
|
|
|
.sheet-gear-item-expander:checked ~ .sheet-gear-item,
|
|
.sheet-gear-weapon-expander:checked ~ .sheet-gear-weapon,
|
|
.sheet-gear-armor-expander:checked ~ .sheet-gear-armor {
|
|
display:flex;
|
|
}
|
|
|
|
.repcontainer[data-groupname="repeating_moves"],
|
|
.repcontainer[data-groupname="repeating_spells"],
|
|
.repcontainer[data-groupname="repeating_gear"],
|
|
.repcontainer[data-groupname="repeating_gmod"] {
|
|
flex: 0 1 auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.repcontainer[data-groupname="repeating_moves"] .repitem,
|
|
.repcontainer[data-groupname="repeating_spells"] .repitem,
|
|
.repcontainer[data-groupname="repeating_gear"] .repitem,
|
|
.repcontainer[data-groupname="repeating_gmod"] .repitem {
|
|
flex: 0 0 auto;
|
|
color: black;
|
|
width: 266px;
|
|
padding: 2px;
|
|
border: 0px solid;
|
|
border-radius: 2px;
|
|
margin: 4px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.sheet-moves button[type="roll"],
|
|
.sheet-spells button[type="roll"],
|
|
.sheet-gear button[type="roll"],
|
|
.sheet-gmod button[type="roll"] {
|
|
width: calc(100% - 60px);
|
|
text-align: left;
|
|
vertical-align: center;
|
|
}
|
|
|
|
.sheet-moves input[type="text"],
|
|
.sheet-spells input[type="text"],
|
|
.sheet-gear input[type="text"],
|
|
.sheet-gmod input[type="text"] {
|
|
width: calc(100% - 5em);
|
|
}
|
|
|
|
.sheet-moves .sheet-enable-roll[type="checkbox"],
|
|
.sheet-spells .sheet-enable-roll[type="checkbox"] {
|
|
display: inline;
|
|
position: relative;
|
|
left: 10px;
|
|
width: 30px;
|
|
margin: 5px 0px 5px 10px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.sheet-moves .sheet-rollresults-container,
|
|
.sheet-spells .sheet-rollresults-container {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-enable-roll:checked ~ .sheet-rollresults-container {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-moves .sheet-enable-roll:not(:checked) + .sheet-label,
|
|
.sheet-moves .sheet-enable-roll:not(:checked) + .sheet-label + select,
|
|
.sheet-moves .sheet-enable-roll:not(:checked) + .sheet-label + select + .sheet-label,
|
|
.sheet-moves .sheet-enable-roll:not(:checked) + .sheet-label + select + .sheet-label + input,
|
|
.sheet-spells .sheet-enable-roll:not(:checked) + .sheet-label,
|
|
.sheet-spells .sheet-enable-roll:not(:checked) + .sheet-label + input,
|
|
.sheet-spells .sheet-enable-roll:not(:checked) + .sheet-label + input + select,
|
|
.sheet-spells .sheet-enable-roll:not(:checked) + .sheet-label + input + select + .sheet-label,
|
|
.sheet-spells .sheet-enable-roll:not(:checked) + .sheet-label + input + select + .sheet-label + input {
|
|
color: #d3d3d3;
|
|
border-color: #d3d3d3;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sheet-spells .sheet-spell-level-rote:checked + div {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sheet-move-expansion,
|
|
.sheet-spell-expansion,
|
|
.sheet-gear-expansion,
|
|
.sheet-gmod-expansion {
|
|
flex-wrap: wrap;
|
|
text-align: right;
|
|
margin-top: 5px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.sheet-move-expansion {
|
|
text-align: left;
|
|
}
|
|
|
|
.sheet-move-expansion input[type="text"],
|
|
.sheet-spell-expansion input[type="text"],
|
|
.sheet-gear-expansion input[type="text"],
|
|
.sheet-gmod-expansion input[type="text"] {
|
|
text-align: left;
|
|
font-weight: normal;
|
|
font-size: 0.8em;
|
|
width: calc(100% - 105px);
|
|
}
|
|
|
|
.sheet-move-expansion textarea,
|
|
.sheet-spell-expansion textarea,
|
|
.sheet-gear-expansion textarea,
|
|
.sheet-gmod-expansion textarea {
|
|
text-align: left;
|
|
font-weight: normal;
|
|
font-size: 0.8em;
|
|
width: calc(100% - 115px);
|
|
height: 3em;
|
|
}
|
|
|
|
.sheet-move-expansion textarea {
|
|
width: calc(100% - 20px);
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.sheet-move-expansion input[type="number"],
|
|
.sheet-spell-expansion input[type="number"],
|
|
.sheet-gear-expansion input[type="number"],
|
|
.sheet-gmod-expansion input[type="number"] {
|
|
text-align: center;
|
|
width: 2em;
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.sheet-move-expansion select,
|
|
.sheet-spell-expansion select,
|
|
.sheet-gear-expansion select,
|
|
.sheet-gmod-expansion select {
|
|
width: 70px;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.sheet-move-expansion .sheet-label,
|
|
.sheet-spell-expansion .sheet-label,
|
|
.sheet-gear-expansion .sheet-label,
|
|
.sheet-gmod-expansion .sheet-label {
|
|
font-size: smaller;
|
|
width: 75px;
|
|
}
|
|
|
|
.sheet-move-expansion input,
|
|
.sheet-spell-expansion input,
|
|
.sheet-gear-expansion input ,
|
|
.sheet-gmod-expansion input {
|
|
max-width: initial;
|
|
}
|
|
|
|
.sheet-gmod .sheet-enable-mod {
|
|
width: unset;
|
|
}
|
|
|
|
.sheet-gmod-expansion .sheet-enable-mod:not(:checked) + span,
|
|
.sheet-gmod-expansion .sheet-enable-mod:not(:checked) + span input,
|
|
.sheet-gmod-expansion .sheet-enable-mod:not(:checked) + span select {
|
|
color: #d3d3d3;
|
|
border-color: #d3d3d3;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sheet-gmod-expansion .sheet-label {
|
|
margin: 0px;
|
|
}
|
|
|
|
textarea.sheet-move-details,
|
|
textarea.sheet-spell-details,
|
|
textarea.sheet-gear-details {
|
|
width: calc(100% - 20px);
|
|
height: 54px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.sheet-spell-expansion .sheet-spelldie,
|
|
.sheet-gmod-expansion .sheet-gmod-die {
|
|
width: 52px;
|
|
font-size: 0.9em;
|
|
margin: 5px 0px;
|
|
}
|
|
|
|
.sheet-spell-expansion .sheet-spell-level {
|
|
margin-right: 123px;
|
|
}
|
|
|
|
.sheet-spell-expansion .sheet-spell-level + span {
|
|
display:block;
|
|
}
|
|
|
|
.sheet-spell-expansion label {
|
|
padding-right: unset;
|
|
}
|
|
|
|
.sheet-spell-level-selector {
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
.sheet-prepared-counter {
|
|
display: inherit;
|
|
}
|
|
|
|
/* Sub Section */
|
|
|
|
.sheet-sub-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-start;
|
|
max-height: unset;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.sheet-gear-container .sheet-mid-header input[type=number] {
|
|
width: 2.7em;
|
|
height: 1.7em;
|
|
border: 1px solid black;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Settings Section */
|
|
|
|
.sheet-settings-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
max-height: unset;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.sheet-settings-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
padding: 5px;
|
|
}
|
|
|
|
.sheet-settings-content-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
color: black;
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
border-radius: 3px;
|
|
text-align: left;
|
|
padding: 5px;
|
|
margin: 2px 5px 2px 2px;
|
|
}
|
|
|
|
.sheet-gmod {
|
|
/*
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
*/
|
|
padding: 2px;
|
|
margin-left: 0.3em;
|
|
width: calc(100% - 1.2em);
|
|
}
|
|
|
|
.sheet-gmod .repitem {
|
|
width: calc(100% - 5%);
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
/* Roll Templates */
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-container,
|
|
.sheet-rolltemplate-spell .sheet-rt-container,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-container {
|
|
background-color: rgb(35, 31, 32);
|
|
border-radius: 2px;
|
|
margin-left: -10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-header,
|
|
.sheet-rolltemplate-spell .sheet-rt-header,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-header {
|
|
font-weight: bold;
|
|
font-size: medium;
|
|
padding: 6px 6px 0px 6px;
|
|
color: white;
|
|
}
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-header-minor,
|
|
.sheet-rolltemplate-spell .sheet-rt-header-minor,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-header-minor {
|
|
font-size: 90%;
|
|
font-style: italic;
|
|
}
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-content,
|
|
.sheet-rolltemplate-spell .sheet-rt-content,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-content {
|
|
background-color: white;
|
|
margin: 5px;
|
|
padding: 2px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-row,
|
|
.sheet-rolltemplate-spell .sheet-rt-row,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-row {
|
|
flex: 1 0 auto;
|
|
display: flex;
|
|
|
|
padding-top: 6px;
|
|
padding-bottom: 2px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-label,
|
|
.sheet-rolltemplate-spell .sheet-rt-label,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-label {
|
|
font-weight: bold;
|
|
font-size: 0.9em;
|
|
display: block;
|
|
flex: 1;
|
|
padding-right: 4px;
|
|
margin-right: 2px;
|
|
text-align: right;
|
|
}
|
|
|
|
.sheet-rolltemplate-move .sheet-rt-value,
|
|
.sheet-rolltemplate-spell .sheet-rt-value,
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-value {
|
|
display: block;
|
|
font-size: .9em;
|
|
flex: 3;
|
|
text-align: left;
|
|
}
|
|
|
|
.sheet-rolltemplate-dwgeneral .sheet-rt-value {
|
|
text-align: center;
|
|
}
|
|
|
|
/* Notes Fields */
|
|
|
|
.sheet-notes{
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
border: 1px solid;
|
|
min-height: 28px;
|
|
padding: 5px;
|
|
width:49%;
|
|
box-sizing: border-box;
|
|
resize:vertical;
|
|
display:inline-block;
|
|
}
|
|
.sheet-notes2{
|
|
margin-left:10px;
|
|
} |