mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
1077 lines
23 KiB
CSS
1077 lines
23 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Cinzel+Decorative:wght@400;700;900&family=Noto+Emoji:wght@300..700&family=Signika+Negative:wght@300..700&display=swap");
|
|
|
|
/* TABS */
|
|
.sheet-character,
|
|
.sheet-magic,
|
|
.sheet-equipment,
|
|
.sheet-evolution,
|
|
.sheet-recipes,
|
|
.sheet-retainers,
|
|
.sheet-notes {
|
|
display: none;
|
|
}
|
|
|
|
input[name="attr_sheetTab"][value="character"] ~ div.sheet-character,
|
|
input[name="attr_sheetTab"][value="magic"] ~ div.sheet-magic,
|
|
input[name="attr_sheetTab"][value="equipment"] ~ div.sheet-equipment,
|
|
input[name="attr_sheetTab"][value="evolution"] ~ div.sheet-evolution,
|
|
input[name="attr_sheetTab"][value="recipes"] ~ div.sheet-recipes,
|
|
input[name="attr_sheetTab"][value="retainers"] ~ div.sheet-retainers,
|
|
input[name="attr_sheetTab"][value="notes"] ~ div.sheet-notes {
|
|
display: flex !important;
|
|
padding: 30px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.sheet-button-select {
|
|
gap: 3px;
|
|
}
|
|
|
|
.sheet-button-select button {
|
|
border: unset !important;
|
|
border-radius: 8px 8px 0px 0px;
|
|
font-family: "Cinzel Decorative";
|
|
color: #333;
|
|
background-color: #ccc;
|
|
text-transform: capitalize;
|
|
outline: unset !important;
|
|
padding: 5px 10px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.sheet-button-select button:focus {
|
|
outline: unset !important;
|
|
}
|
|
|
|
input[name="attr_sheetTab"][value="character"]
|
|
~ .sheet-button-select
|
|
button[name="act_character"],
|
|
input[name="attr_sheetTab"][value="magic"]
|
|
~ .sheet-button-select
|
|
button[name="act_magic"],
|
|
input[name="attr_sheetTab"][value="equipment"]
|
|
~ .sheet-button-select
|
|
button[name="act_equipment"],
|
|
input[name="attr_sheetTab"][value="evolution"]
|
|
~ .sheet-button-select
|
|
button[name="act_evolution"],
|
|
input[name="attr_sheetTab"][value="recipes"]
|
|
~ .sheet-button-select
|
|
button[name="act_recipes"],
|
|
input[name="attr_sheetTab"][value="retainers"]
|
|
~ .sheet-button-select
|
|
button[name="act_retainers"],
|
|
input[name="attr_sheetTab"][value="notes"]
|
|
~ .sheet-button-select
|
|
button[name="act_notes"] {
|
|
background: #f9f9f9;
|
|
color: #073763;
|
|
font-size: 15px;
|
|
}
|
|
|
|
input[name="attr_sheetTab"][value="character"]
|
|
~ .sheet-button-select
|
|
button[name="act_character"] {
|
|
background: #073763 !important;
|
|
color: #f9f9f9;
|
|
font-size: 15px;
|
|
}
|
|
|
|
/* END OF TABS */
|
|
/* OVERRIDE */
|
|
.ui-dialog .charsheet {
|
|
background-color: #1f1f1f;
|
|
}
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_del {
|
|
font-family: "Pictos" !important;
|
|
}
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_add,
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_edit {
|
|
font-size: 10px !important;
|
|
}
|
|
/* END OF OVERRIDE */
|
|
/* GENERAL */
|
|
.sheet-character div,
|
|
.sheet-equipment div,
|
|
.sheet-magic div,
|
|
.sheet-evolution div,
|
|
.sheet-recipes div,
|
|
.sheet-retainers div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
@media (max-width: 480px) {
|
|
img {
|
|
display: none;
|
|
}
|
|
}
|
|
img {
|
|
height: 132px;
|
|
}
|
|
input {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
accent-color: #0b5394 !important;
|
|
font-family: "Alegreya";
|
|
font-size: 20px !important;
|
|
border: none !important;
|
|
background-color: transparent !important;
|
|
padding: unset !important;
|
|
min-width: 40px !important;
|
|
outline-color: #3da4fd;
|
|
color: #434343;
|
|
}
|
|
textarea {
|
|
font-size: 16px !important;
|
|
box-sizing: border-box;
|
|
font-family: "Alegreya";
|
|
margin-bottom: unset;
|
|
background: unset;
|
|
border: unset;
|
|
border-radius: 0px;
|
|
resize: none;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: darkgray lightgray;
|
|
}
|
|
h3 {
|
|
text-align: center;
|
|
text-transform: capitalize;
|
|
box-sizing: border-box;
|
|
font-family: "Cinzel Decorative";
|
|
line-height: 33px;
|
|
color: #073763;
|
|
}
|
|
label {
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
padding: unset !important;
|
|
margin: unset !important;
|
|
gap: 10px;
|
|
box-sizing: border-box !important;
|
|
white-space: nowrap !important;
|
|
text-transform: capitalize !important;
|
|
box-sizing: border-box;
|
|
font-family: "Alegreya";
|
|
color: #434343 !important;
|
|
height: 33px;
|
|
align-items: flex-end !important;
|
|
font-size: 18px !important;
|
|
}
|
|
fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
span {
|
|
background: #cfe2f3;
|
|
color: #073763;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
padding: 5px 10px;
|
|
box-sizing: border-box !important;
|
|
font-family: "Cinzel Decorative";
|
|
font-size: 18px !important;
|
|
font-weight: normal;
|
|
height: 28px;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
display: flex;
|
|
}
|
|
select {
|
|
margin: unset !important;
|
|
box-sizing: border-box;
|
|
font-family: "Alegreya";
|
|
font-size: 18px;
|
|
padding: unset !important;
|
|
background-color: transparent !important;
|
|
border: unset !important;
|
|
}
|
|
input[type="checkbox"] {
|
|
width: 15px !important;
|
|
}
|
|
.btn {
|
|
margin: 0px !important;
|
|
font-size: 13px !important;
|
|
line-height: 18px !important;
|
|
color: #333333 !important;
|
|
text-align: center !important;
|
|
text-shadow: 0 !important;
|
|
vertical-align: middle !important;
|
|
background-image: unset !important;
|
|
background-repeat: unset !important;
|
|
box-shadow: unset !important;
|
|
cursor: pointer !important;
|
|
padding: 4px 10px !important;
|
|
border-width: 2px !important;
|
|
border-color: #333333 !important;
|
|
box-sizing: border-box;
|
|
font-family: "Cinzel Decorative";
|
|
}
|
|
.attributes input,
|
|
.combat-line input,
|
|
.movement-line input,
|
|
.weapons input,
|
|
.weapons select {
|
|
border-width: none;
|
|
}
|
|
.attribute-input,
|
|
.combat-line input,
|
|
.movement-line input,
|
|
.weapons input,
|
|
.weapons select,
|
|
.magic-grid input {
|
|
border-color: none;
|
|
}
|
|
/* END OF GENERAL */
|
|
|
|
/* SHEET-CHARACTER */
|
|
.sheet-character {
|
|
flex-direction: column;
|
|
gap: 50px;
|
|
}
|
|
.logo-and-header {
|
|
flex-direction: row;
|
|
}
|
|
.header {
|
|
flex: 4;
|
|
flex-direction: column;
|
|
padding: 30px;
|
|
background-color: #073763;
|
|
margin: -30px -30px 0px -30px;
|
|
}
|
|
.header-line {
|
|
flex-direction: row !important;
|
|
gap: 5px;
|
|
}
|
|
.header-line label {
|
|
flex: 1;
|
|
align-items: center !important;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
text-transform: capitalize;
|
|
box-sizing: border-box;
|
|
font-family: "Cinzel Decorative";
|
|
color: #f9f9f9 !important;
|
|
font-size: 22px !important;
|
|
}
|
|
.header-line input {
|
|
font-size: 22px !important;
|
|
padding-bottom: 4px !important;
|
|
color: #f9f9f9;
|
|
font-weight: normal;
|
|
font-family: "Cinzel Decorative";
|
|
}
|
|
.attributes-saves-and-avatar {
|
|
align-items: flex-start;
|
|
gap: 50px;
|
|
}
|
|
.attributes {
|
|
flex: 1;
|
|
justify-content: start;
|
|
margin: unset !important;
|
|
}
|
|
.attributes-container {
|
|
flex: 0;
|
|
flex-direction: column;
|
|
}
|
|
.attributes-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.attributes-line {
|
|
flex-wrap: nowrap !important;
|
|
align-items: flex-end !important;
|
|
}
|
|
.attributes-line span {
|
|
width: 80px;
|
|
}
|
|
.attributes input {
|
|
width: 40px !important;
|
|
text-align: center;
|
|
}
|
|
.saves {
|
|
flex: 1;
|
|
justify-content: center;
|
|
height: 264px !important;
|
|
}
|
|
.saves-container {
|
|
flex: 0;
|
|
flex-direction: column;
|
|
}
|
|
.saves-content {
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
}
|
|
.saves-line {
|
|
align-items: center;
|
|
}
|
|
.saves-line label {
|
|
flex: 1;
|
|
}
|
|
.saves-line button {
|
|
font-size: 16px !important;
|
|
background-color: #cfe2f3 !important;
|
|
color: #073763 !important;
|
|
width: 135px;
|
|
border: unset;
|
|
}
|
|
.saves-line button:hover {
|
|
background-color: #073763 !important;
|
|
color: #f9f9f9 !important;
|
|
}
|
|
.saves-line input {
|
|
min-width: unset !important;
|
|
border-radius: 17px;
|
|
padding: 5px;
|
|
text-align: center;
|
|
width: 33px !important;
|
|
height: 33px !important;
|
|
border: 2px solid #0b5394 !important;
|
|
}
|
|
.avatarContainer {
|
|
flex: 1;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.art-container {
|
|
height: 231px;
|
|
width: 231px !important;
|
|
border-radius: 4px;
|
|
}
|
|
.art {
|
|
border-radius: 8px;
|
|
background-image: url(@{character_name|avatar});
|
|
background-position: flex-start;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.combat,
|
|
.movement,
|
|
.movement-content {
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
.combat-line label,
|
|
.movement-line label {
|
|
flex: 1;
|
|
justify-content: space-between;
|
|
}
|
|
.combat-line input,
|
|
.movement-line input {
|
|
width: 60px !important;
|
|
text-align: right;
|
|
}
|
|
.saves-line,
|
|
.combat-line,
|
|
.movement-line {
|
|
flex-wrap: nowrap !important;
|
|
gap: 5px;
|
|
}
|
|
.movement-line {
|
|
align-items: flex-end;
|
|
}
|
|
.movement-line select {
|
|
width: 80px !important;
|
|
}
|
|
.move-and-combat {
|
|
flex: 1;
|
|
gap: 50px;
|
|
}
|
|
.languages-and-abilities {
|
|
gap: 50px;
|
|
}
|
|
.abilities textarea,
|
|
.abilities span {
|
|
width: 100%;
|
|
}
|
|
.abilities input {
|
|
text-align: center;
|
|
}
|
|
.language-name {
|
|
flex: 1;
|
|
}
|
|
.language-fluent {
|
|
flex: 1;
|
|
}
|
|
.language-literate {
|
|
flex: 1;
|
|
}
|
|
.abilities-container,
|
|
.languages-container {
|
|
flex-direction: column;
|
|
}
|
|
.languages-container,
|
|
.abilities-container {
|
|
flex: 2;
|
|
}
|
|
.abilities-container,
|
|
.languages-container {
|
|
align-items: center;
|
|
}
|
|
.abilities {
|
|
justify-content: center;
|
|
}
|
|
.language-grid span {
|
|
padding: unset !important;
|
|
}
|
|
.languages {
|
|
justify-content: center;
|
|
}
|
|
#ac-option {
|
|
justify-content: flex-end;
|
|
margin-bottom: 33px !important;
|
|
}
|
|
.weapons .repitem {
|
|
padding-bottom: 13px !important;
|
|
}
|
|
.weapons {
|
|
justify-content: center;
|
|
}
|
|
.weapon {
|
|
margin-bottom: 20px;
|
|
}
|
|
.weapon-grid div {
|
|
flex-direction: column;
|
|
height: 66px;
|
|
|
|
padding-top: 5px;
|
|
gap: 5px;
|
|
}
|
|
#weapon-roll {
|
|
flex: 1 !important;
|
|
}
|
|
#weapon-roll button {
|
|
height: 26.5px;
|
|
background-color: #0b5394;
|
|
color: #f9f9f9 !important;
|
|
border: unset !important;
|
|
font-size: 20px !important;
|
|
}
|
|
#weapon-roll button:hover {
|
|
background-color: #073763;
|
|
}
|
|
#weapon-roll span {
|
|
color: #333;
|
|
}
|
|
#weapon-name {
|
|
flex: 7 !important;
|
|
}
|
|
#weapon-attack-type {
|
|
flex: 3 !important;
|
|
}
|
|
#weapon-attack-bonus {
|
|
flex: 1 !important;
|
|
}
|
|
#weapon-damage-die {
|
|
flex: 1 !important;
|
|
}
|
|
#weapon-damage-bonus {
|
|
flex: 1 !important;
|
|
}
|
|
#weapon-attack-bonus input,
|
|
#weapon-damage-die input,
|
|
#weapon-damage-bonus input {
|
|
text-align: center;
|
|
}
|
|
#weapon-name input {
|
|
padding-left: 10px !important;
|
|
}
|
|
#weapon-attack-bonus input,
|
|
#weapon-damage-die input,
|
|
#weapon-damage-bonus input,
|
|
.weapon-grid span {
|
|
line-height: 28px;
|
|
white-space: nowrap !important;
|
|
}
|
|
.weapon-grid select {
|
|
width: 100% !important;
|
|
}
|
|
#weapon-description {
|
|
height: 33px;
|
|
background-color: #e9e9e9 !important;
|
|
}
|
|
/* END OF SHEET-CHARACTER */
|
|
/* MAGIC-SHEET */
|
|
.sheet-magic {
|
|
gap: 50px;
|
|
flex-direction: column;
|
|
}
|
|
.magic-per-circle {
|
|
justify-content: space-between;
|
|
}
|
|
.magic-per-circle label {
|
|
flex: 0;
|
|
}
|
|
.magic-per-circle input {
|
|
text-align: center;
|
|
}
|
|
.sheet-magic .repitem {
|
|
margin-bottom: 33px;
|
|
}
|
|
.magic-grid {
|
|
flex-wrap: wrap !important;
|
|
}
|
|
.magic-grid span {
|
|
box-sizing: border-box !important;
|
|
padding: unset !important;
|
|
}
|
|
.magic-grid span {
|
|
margin: 4px 0px 1px;
|
|
}
|
|
.magic-grid div,
|
|
.magic-grid input {
|
|
height: 33px !important;
|
|
}
|
|
.magic-grid button {
|
|
height: 27px;
|
|
margin: 5px 0px 1px !important;
|
|
}
|
|
.sheet-magic .repcontrol button {
|
|
margin-top: 33px !important;
|
|
}
|
|
.magic-roll {
|
|
flex: 0.5;
|
|
}
|
|
.magic-roll button {
|
|
flex: 1 !important;
|
|
height: 26.5px;
|
|
background-color: #0b5394;
|
|
color: #f9f9f9 !important;
|
|
border: unset !important;
|
|
font-size: 20px !important;
|
|
}
|
|
.magic-roll button:hover {
|
|
background-color: #073763;
|
|
}
|
|
.magic-memorized {
|
|
flex: 1;
|
|
}
|
|
.magic-name {
|
|
flex: 4;
|
|
}
|
|
.magic-circle {
|
|
flex: 1;
|
|
}
|
|
.magic-description {
|
|
height: 66px !important;
|
|
background-color: #e9e9e9;
|
|
}
|
|
.magic-effect {
|
|
flex: 1;
|
|
}
|
|
.magic-memorized,
|
|
.magic-circle,
|
|
.magic-effect {
|
|
text-align: center;
|
|
}
|
|
/* END OF MAGIC-SHEET */
|
|
/* EQUIPMENT SHEET */
|
|
.sheet-equipment .repcontainer .repitem:nth-child(odd) > div {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.sheet-equipment .repcontainer .repitem:nth-child(even) > div {
|
|
background-color: #e9e9e9;
|
|
}
|
|
.backpack-toggle-show {
|
|
display: none;
|
|
}
|
|
.charsheet input.backpack-toggle-show:not(:checked) ~ div.backpack {
|
|
display: none;
|
|
}
|
|
.belt-pouch-toggle-show {
|
|
display: none;
|
|
}
|
|
.charsheet input.belt-pouch-toggle-show:not(:checked) ~ div.belt-pouch {
|
|
display: none;
|
|
}
|
|
|
|
.sacks-toggle-show,
|
|
.sack-toggle-show-1,
|
|
.sack-toggle-show-2,
|
|
.sack-toggle-show-3,
|
|
.sack-toggle-show-4,
|
|
.sack-toggle-show-5,
|
|
.sack-toggle-show-6 {
|
|
display: none;
|
|
}
|
|
|
|
.charsheet input.sacks-toggle-show:not(:checked) ~ div.sacks,
|
|
.charsheet input.sack-toggle-show-1:not(:checked) ~ div.equipment-line-1,
|
|
.charsheet input.sack-toggle-show-1:not(:checked) ~ div.equipment-line-2,
|
|
.charsheet input.sack-toggle-show-1:not(:checked) ~ div.equipment-line-3,
|
|
.charsheet input.sack-toggle-show-1:not(:checked) ~ div.equipment-line-4,
|
|
.charsheet input.sack-toggle-show-2:not(:checked) ~ div.equipment-line-5,
|
|
.charsheet input.sack-toggle-show-2:not(:checked) ~ div.equipment-line-6,
|
|
.charsheet input.sack-toggle-show-2:not(:checked) ~ div.equipment-line-7,
|
|
.charsheet input.sack-toggle-show-2:not(:checked) ~ div.equipment-line-8,
|
|
.charsheet input.sack-toggle-show-3:not(:checked) ~ div.equipment-line-9,
|
|
.charsheet input.sack-toggle-show-3:not(:checked) ~ div.equipment-line-10,
|
|
.charsheet input.sack-toggle-show-3:not(:checked) ~ div.equipment-line-11,
|
|
.charsheet input.sack-toggle-show-3:not(:checked) ~ div.equipment-line-12,
|
|
.charsheet input.sack-toggle-show-4:not(:checked) ~ div.equipment-line-13,
|
|
.charsheet input.sack-toggle-show-4:not(:checked) ~ div.equipment-line-14,
|
|
.charsheet input.sack-toggle-show-4:not(:checked) ~ div.equipment-line-15,
|
|
.charsheet input.sack-toggle-show-4:not(:checked) ~ div.equipment-line-16,
|
|
.charsheet input.sack-toggle-show-5:not(:checked) ~ div.equipment-line-17,
|
|
.charsheet input.sack-toggle-show-5:not(:checked) ~ div.equipment-line-18,
|
|
.charsheet input.sack-toggle-show-5:not(:checked) ~ div.equipment-line-19,
|
|
.charsheet input.sack-toggle-show-5:not(:checked) ~ div.equipment-line-20,
|
|
.charsheet input.sack-toggle-show-6:not(:checked) ~ div.equipment-line-21,
|
|
.charsheet input.sack-toggle-show-6:not(:checked) ~ div.equipment-line-22,
|
|
.charsheet input.sack-toggle-show-6:not(:checked) ~ div.equipment-line-23,
|
|
.charsheet input.sack-toggle-show-6:not(:checked) ~ div.equipment-line-24 {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-equipment {
|
|
flex-direction: column;
|
|
gap: 50px;
|
|
}
|
|
.sheet-equipment .repcontrol button {
|
|
margin-top: 33px !important;
|
|
}
|
|
.encumbrance {
|
|
border: 2px dashed #073763;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
justify-content: space-around;
|
|
}
|
|
.encumbrance label,
|
|
.encumbrance div {
|
|
flex: 0;
|
|
}
|
|
.encumbrance div {
|
|
flex-direction: column !important;
|
|
height: 66px;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
.encumbrance label {
|
|
text-transform: none !important;
|
|
}
|
|
.encumbrance input {
|
|
width: 65px !important;
|
|
text-align: center;
|
|
}
|
|
.equipment-title-and-encumbrance {
|
|
align-items: space-between;
|
|
width: 100% !important;
|
|
}
|
|
.equipment-title-and-encumbrance input {
|
|
width: 65px !important;
|
|
text-align: center;
|
|
}
|
|
.equipment-title-and-encumbrance h2,
|
|
.equipment-title-and-encumbrance div,
|
|
.equipment-title-and-encumbrance label {
|
|
flex: 1;
|
|
}
|
|
.equipment-title-and-encumbrance label {
|
|
justify-content: flex-end;
|
|
}
|
|
.equipment-title-and-encumbrance div {
|
|
gap: 5px;
|
|
}
|
|
.equipment-grid span {
|
|
padding: unset !important;
|
|
}
|
|
.equipment-line-even {
|
|
background-color: #e9e9e9;
|
|
}
|
|
.languages-and-abilities .repcontainer .repitem:nth-child(odd) > div {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.languages-and-abilities .repcontainer .repitem:nth-child(even) > div {
|
|
background-color: #e9e9e9;
|
|
}
|
|
.equipment-line input,
|
|
.language-line input,
|
|
.ability-line {
|
|
height: 33px !important;
|
|
}
|
|
.equipment-line input[type="checkbox"],
|
|
.language-line input[type="checkbox"] {
|
|
width: 15px !important;
|
|
height: 15px !important;
|
|
min-width: none;
|
|
align-self: center;
|
|
}
|
|
.item-name::placeholder {
|
|
font-family: "Noto Emoji" !important;
|
|
text-align: center;
|
|
color: #0b5394;
|
|
}
|
|
.armor,
|
|
.items,
|
|
.retainer-items,
|
|
.mount-items,
|
|
.cart-items,
|
|
.stowed-items {
|
|
margin-bottom: 3px;
|
|
}
|
|
.item-name {
|
|
flex: 7;
|
|
}
|
|
.armor-value {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
.coins {
|
|
margin-top: 20px;
|
|
margin-bottom: 22px;
|
|
border-radius: 4px;
|
|
border: 2px dashed #333333;
|
|
padding: 10px;
|
|
width: fit-content;
|
|
gap: 50px;
|
|
box-sizing: border-box;
|
|
}
|
|
.coins label {
|
|
flex: 1;
|
|
}
|
|
.coins input {
|
|
width: 85px !important;
|
|
text-align: center;
|
|
}
|
|
/* END OF EQUIPMENT SHEET */
|
|
/* EVOLUTION SHEET */
|
|
.sheet-evolution {
|
|
flex-direction: column;
|
|
gap: 50px;
|
|
}
|
|
.feats-grid button {
|
|
background-color: #0b5394;
|
|
color: #f9f9f9 !important;
|
|
border-radius: 4px;
|
|
border: unset;
|
|
}
|
|
.feats-grid button:hover {
|
|
background-color: #073763;
|
|
}
|
|
.feats-line-even,
|
|
.progression-line-even {
|
|
background-color: #e9e9e9;
|
|
}
|
|
.feat-number,
|
|
.progression-number{
|
|
flex: 1;
|
|
justify-content: center;
|
|
align-items: center !important;
|
|
box-sizing: border-box;
|
|
padding: unset !important;
|
|
}
|
|
.feat-description,
|
|
.progression-description {
|
|
flex: 20;
|
|
text-align: center;
|
|
}
|
|
.progression-by-level {
|
|
flex: 1;
|
|
align-items: center !important;
|
|
justify-content: center;
|
|
}
|
|
.progression-select {
|
|
flex: 9;
|
|
text-align: center;
|
|
}
|
|
.progression-option input[type="radio"] {
|
|
display: none;
|
|
}
|
|
.progression-option input[type="radio"]:checked + label {
|
|
background-color: #007bff;
|
|
color: #f9f9f9 !important;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* END OF EVOLUTION SHEET */
|
|
/* RECIPES SHEET */
|
|
.sheet-recipes {
|
|
flex-direction: column;
|
|
padding: 30px 20px !important;
|
|
}
|
|
.recipe {
|
|
background-color: #cfe2f3 !important;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.recipe-header{
|
|
flex-direction: row;
|
|
}
|
|
|
|
.recipe-header input {
|
|
background-color: #bfd9f0 !important;
|
|
color: #434343 !important;
|
|
border: unset !important;
|
|
height: 42px !important;
|
|
font-weight: bold;
|
|
border-radius: unset !important;
|
|
padding-left: 10px !important;
|
|
flex: 13
|
|
}
|
|
|
|
.recipe-header button {
|
|
flex: 1;
|
|
border: unset !important;
|
|
background-color: #073763;
|
|
font-family: "Pictos";
|
|
color: #bfd9f0 !important;
|
|
font-size: 22px !important;
|
|
}
|
|
.recipe-header button::before {
|
|
content: none !important;
|
|
}
|
|
.recipe-header button:hover {
|
|
background-color: #04203a !important;
|
|
}
|
|
.recipe textarea {
|
|
padding: 10px !important;
|
|
height: 66px !important;
|
|
}
|
|
/* END OF RECIPES SHEET */
|
|
/* RETAINERS SHEET */
|
|
.sheet-retainers {
|
|
flex-direction: column;
|
|
padding: 30px 20px !important;
|
|
}
|
|
.repeating.retainer {
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
}
|
|
#retainer {
|
|
margin-bottom: 33px;
|
|
}
|
|
#retainers-header-wrapper {
|
|
flex: 1;
|
|
}
|
|
.retainers-header {
|
|
flex: 4;
|
|
}
|
|
#retainers-header-filler {
|
|
flex: 1;
|
|
}
|
|
.retainers-header input,
|
|
.retainers-header select {
|
|
background-color: #bfd9f0 !important;
|
|
color: #434343 !important;
|
|
border: unset !important;
|
|
height: 42px !important;
|
|
font-weight: bold;
|
|
border-radius: unset !important;
|
|
}
|
|
.retainers-header input {
|
|
padding-left: 10px !important;
|
|
}
|
|
.retainers-header input::placeholder {
|
|
color: #0b5394;
|
|
opacity: 0.6;
|
|
}
|
|
#retainer-name {
|
|
flex: 4;
|
|
}
|
|
#retainer-profession {
|
|
flex: 3;
|
|
}
|
|
#retainer-kind {
|
|
flex: 3;
|
|
}
|
|
#retainer-loyalty {
|
|
flex: 2;
|
|
}
|
|
.retainers-info {
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
.retainers-info {
|
|
background-color: #cfe2f3;
|
|
}
|
|
.retainers-hd-moral-and-thac0 button {
|
|
background-color: #0b5394;
|
|
color: #f9f9f9 !important;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
border: unset !important;
|
|
padding: 5px 10px;
|
|
box-sizing: border-box !important;
|
|
font-family: "Cinzel Decorative";
|
|
font-size: 20px !important;
|
|
height: 28px;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
display: flex;
|
|
}
|
|
.retainers-hd-moral-and-thac0 button::before {
|
|
content: none !important;
|
|
}
|
|
.retainers-hd-moral-and-thac0 button:hover {
|
|
background-color: #073763;
|
|
}
|
|
.retainers-hd-moral-thac0-and-saves {
|
|
flex: 1;
|
|
gap: 20px;
|
|
}
|
|
.retainers-hd-moral-and-thac0 div,
|
|
.retainer-saves div {
|
|
flex: 1;
|
|
flex-direction: column !important;
|
|
gap: 0px;
|
|
}
|
|
.retainer-saves label {
|
|
flex: 1;
|
|
align-items: center !important;
|
|
display: flex !important;
|
|
margin-right: 10px !important;
|
|
}
|
|
.retainers-hd-moral-thac0-and-saves input {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
.retainers-hd-moral-and-thac0 {
|
|
flex: 3;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.retainer-saves {
|
|
flex: 6;
|
|
padding: 10px;
|
|
border: 2px dashed #073763;
|
|
border-radius: 4px;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.retainer-saves button {
|
|
font-size: 20px !important;
|
|
background-color: #0b5394 !important;
|
|
border: unset !important;
|
|
color: #f9f9f9 !important;
|
|
}
|
|
.retainer-saves button:hover {
|
|
background-color: #073763 !important;
|
|
}
|
|
/* END OF RETAINERS SHEET */
|
|
/* NOTES */
|
|
.notes {
|
|
height: 750px !important;
|
|
box-sizing: border-box;
|
|
border-color: #073763;
|
|
border-width: 2px;
|
|
border-radius: 4px;
|
|
border-style: solid;
|
|
padding: 10px;
|
|
outline-color: #3da4fd;
|
|
}
|
|
/* END OF NOTES */
|
|
/* TEMPLATES*/
|
|
.sheet-rolltemplate-simple,
|
|
.sheet-rolltemplate-default {
|
|
font-family: "Cinzel Decorative";
|
|
font-size: 12px;
|
|
}
|
|
.sheet-rolltemplate-simple table,
|
|
.sheet-rolltemplate-default table {
|
|
background-color: #f9f9f9;
|
|
border: unset;
|
|
width: 100%;
|
|
}
|
|
.sheet-rolltemplate-default caption,
|
|
.sheet-rolltemplate-simple caption {
|
|
font-size: 16px !important;
|
|
text-align: center !important;
|
|
font-family: "Cinzel Decorative" !important;
|
|
padding: 5px !important;
|
|
background-color: #f9f9f9 !important;
|
|
color: #f9f9f9 !important;
|
|
line-height: 16px;
|
|
background-color: #073763 !important;
|
|
}
|
|
.sheet-rolltemplate-simple tr,
|
|
.sheet-rolltemplate-default tr {
|
|
background-color: #f9f9f9 !important;
|
|
/* height: 24px;
|
|
line-height: 24px; */
|
|
}
|
|
.sheet-rolltemplate-simple td,
|
|
.sheet-rolltemplate-default td {
|
|
padding: 0px 5px !important;
|
|
line-height: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
.sheet-rolltemplate-simple td:first-child,
|
|
.sheet-rolltemplate-default td:first-child {
|
|
text-align: unset !important;
|
|
padding-right: unset !important;
|
|
color: #636363;
|
|
width: 40% !important;
|
|
}
|
|
.sheet-rolltemplate-simple td span,
|
|
.sheet-rolltemplate-default td span {
|
|
background-color: transparent !important;
|
|
border: none !important;
|
|
}
|
|
.sheet-rolltemplate-simple h3 {
|
|
color: white;
|
|
background-color: #333;
|
|
line-height: 2.2rem;
|
|
padding: 0.75rem;
|
|
text-align: center;
|
|
}
|
|
.sheet-rolltemplate-simple .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-simple .inlinerollresult.fullcrit {
|
|
border: 0 none;
|
|
}
|
|
.sheet-rolltemplate-simple .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
.sheet-rolltemplate-simple .fullfail {
|
|
color: #f6474e !important;
|
|
font-weight: bold;
|
|
}
|
|
.sheet-rolltemplate-simple .fullcrit {
|
|
color: dodgerblue !important;
|
|
font-weight: bold;
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-template-line {
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
height: 25.5px;
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-template-grid > div {
|
|
height: 25.5px;
|
|
display: grid;
|
|
grid-template-columns: repeat(10, 1fr);
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-template-grid span {
|
|
border: 0 none;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-grid-headers span {
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-template-line span {
|
|
font-weight: bold !important;
|
|
color: #333 !important;
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-grid-values {
|
|
color: #636363;
|
|
}
|
|
.sheet-rolltemplate-simple .sheet-grid-values span:last-of-type {
|
|
border-right-width: 0;
|
|
}
|
|
.sheet-rolltemplate-simple tr:nth-child(even),
|
|
.sheet-rolltemplate-default tr:nth-child(even) {
|
|
background-color: #e9e9e9 !important;
|
|
}
|
|
/* END OF TEMPLATES */
|