Add Enemy sheet

This commit is contained in:
2025-05-25 17:41:32 +02:00
parent ff180ddd2e
commit 973daae15a
46 changed files with 1014 additions and 1828 deletions

View File

@@ -15,13 +15,17 @@
--font-title: "SupernaturalKnight";
--logo-standard: url("../assets/ui/pentagram_logo.webp");
--title-color: #f0443c;
--background-box: ##e0dcdc;
--background-box: #e0dcdc;
--color-success: #0f7a0f;
--color-failure: darkred;
--color-warning: darkorange;
--color-critical-success: #1527cc;
--color-critical-failure: #8d20e7;
}
body {
--color-light-1: rgba(182, 178, 178, 0.6);
--color-warm-1: #f0443c;
}
#logo {
content: var(--logo-standard);
width: 100px;
@@ -82,7 +86,7 @@ i.fvtt-hellborn {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1);
}
.fvtt-hellborn .creature-sheet-common label {
.fvtt-hellborn .enemy-sheet-common label {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1);
}
@@ -322,6 +326,9 @@ i.fvtt-hellborn {
min-width: 4rem;
max-width: 4rem;
}
.fvtt-hellborn .tab.character-status .main-div .counters .spaced-left {
margin-left: 0.8rem;
}
.fvtt-hellborn .tab.character-status .main-div .counters input {
min-width: 2.5rem;
max-width: 2.5rem;
@@ -490,10 +497,6 @@ i.fvtt-hellborn {
display: flex;
flex-direction: row;
}
.fvtt-hellborn .tab.character-equipment .main-div .limboes .limboes-layout {
display: flex;
flex-direction: column;
}
.fvtt-hellborn .tab.character-equipment .main-div .limboes .limboes-line {
display: flex;
flex-direction: row;
@@ -504,13 +507,18 @@ i.fvtt-hellborn {
align-items: center;
gap: 4px;
margin-left: 4px;
min-width: 14rem;
max-width: 14rem;
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.character-equipment .main-div .limboes .ammo-quantity {
text-align: left;
max-width: 3rem;
min-width: 3rem;
}
.fvtt-hellborn .tab.character-equipment .main-div .limboes input {
text-align: left;
min-width: 6rem;
max-width: 6rem;
min-width: 8rem;
max-width: 8rem;
}
.fvtt-hellborn .tab.character-equipment .main-div .weapons {
display: grid;
@@ -972,7 +980,7 @@ i.fvtt-hellborn {
.fvtt-hellborn .tab.vehicle-equipment prose-mirror.active {
min-height: 150px;
}
.fvtt-hellborn .creature-content {
.fvtt-hellborn .enemy-content {
font-family: var(--font-primary);
font-size: calc(var(--font-size-standard) * 1);
color: var(--color-dark-1);
@@ -981,19 +989,19 @@ i.fvtt-hellborn {
background-size: 100% 100%;
overflow: scroll;
}
.fvtt-hellborn .creature-content input:disabled,
.fvtt-hellborn .creature-content select:disabled {
.fvtt-hellborn .enemy-content input:disabled,
.fvtt-hellborn .enemy-content select:disabled {
background-color: rgba(0, 0, 0, 0.2);
border-color: transparent;
color: var(--color-dark-3);
}
.fvtt-hellborn .creature-content input,
.fvtt-hellborn .creature-content select {
.fvtt-hellborn .enemy-content input,
.fvtt-hellborn .enemy-content select {
background-color: rgba(0, 0, 0, 0.1);
border-color: var(--color-dark-6);
color: var(--color-dark-2);
}
.fvtt-hellborn .creature-content input[name="name"] {
.fvtt-hellborn .enemy-content input[name="name"] {
height: 40px;
margin-right: 10px;
font-family: var(--font-title);
@@ -1002,669 +1010,373 @@ i.fvtt-hellborn {
border: none;
margin-top: 4px;
}
.fvtt-hellborn .creature-content fieldset {
.fvtt-hellborn .enemy-content fieldset {
margin-bottom: 4px;
border-radius: 4px;
}
.fvtt-hellborn .creature-content .form-fields input,
.fvtt-hellborn .creature-content .form-fields select {
.fvtt-hellborn .enemy-content .form-fields input,
.fvtt-hellborn .enemy-content .form-fields select {
text-align: center;
font-size: calc(var(--font-size-standard) * 1);
}
.fvtt-hellborn .creature-content .form-fields select {
.fvtt-hellborn .enemy-content .form-fields select {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1);
}
.fvtt-hellborn .creature-content legend {
.fvtt-hellborn .enemy-content legend {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1.2);
font-weight: bold;
letter-spacing: 1px;
}
.fvtt-hellborn .creature-content label {
.fvtt-hellborn .enemy-content label {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1);
}
.fvtt-hellborn .sheet-tabs {
background-color: var(--color-light-1);
}
.fvtt-hellborn .creature-main {
background-color: var(--color-light-1);
.fvtt-hellborn .enemy-main {
/*background-color: var(--color-light-1);*/
display: flex;
}
.fvtt-hellborn .creature-main .creature-pc {
.fvtt-hellborn .enemy-main .enemy-pc {
display: flex;
gap: 4px;
flex: 1;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left {
min-width: 180px;
display: flex;
flex-direction: column;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-left-image {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-left-image {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 8px;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-left-image .creature-img {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-left-image .enemy-img {
height: 140px;
width: auto;
border: none;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-hp {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-hp {
gap: 2px;
align-items: center;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-hp input {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-hp input {
flex: none;
width: 2.5rem;
margin-left: 2px;
margin-right: 4px;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-hp .hp-separator {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-hp .hp-separator {
font-size: calc(var(--font-size-standard) * 1.2);
display: flex;
align-items: center;
justify-content: center;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-dv .form-fields,
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-dmax .form-fields {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-dv .form-fields,
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-dmax .form-fields {
flex: none;
}
.fvtt-hellborn .creature-main .creature-pc .creature-left .creature-dmax-edit input {
display: flex;
width: 60px;
font-size: calc(var(--font-size-standard) * 1.4);
align-items: center;
justify-content: center;
padding: 0 5px 0 5px;
text-align: center;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right {
display: flex;
flex-direction: column;
gap: 5px;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-spec label {
max-width: 8rem;
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition .form-group {
display: flex;
align-items: center;
margin-bottom: 4px;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-spec select {
max-width: 10rem;
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition .splitted {
display: flex;
flex-direction: row;
gap: 4px;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-spec input {
max-width: 6rem;
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition label {
max-width: 5rem;
min-width: 5rem;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-spec .dice-2d6 {
max-width: 1.5rem;
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition input {
text-align: left;
min-width: 18rem;
max-width: 18rem;
margin-bottom: auto;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-spec .rollable:hover,
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-spec .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition .trait {
min-width: 7rem;
max-width: 7rem;
margin-right: 1rem;
margin-bottom: auto;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-name {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-name {
display: flex;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right .creature-name input {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-name input {
font-family: var(--font-title);
font-size: var(--font-size-title);
width: 400px;
}
.fvtt-hellborn .creature-main .creature-pc .creature-right label {
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right label {
min-width: 120px;
}
.fvtt-hellborn .creature-main .creature-pc-play {
.fvtt-hellborn .enemy-main .enemy-pc-play {
min-width: 500px;
}
.fvtt-hellborn .creature-main .creature-pc-edit {
.fvtt-hellborn .enemy-main .enemy-pc-edit {
min-width: 500px;
}
.fvtt-hellborn .creature-main .creature-skills {
background-color: var(--color-light-1);
.fvtt-hellborn .enemy-main .enemy-stats {
/*background-color: var(--color-light-1);*/
display: flex;
flex-direction: column;
gap: 5px;
flex: 1;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill {
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat {
display: flex;
align-items: center;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .icon-skill {
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat .icon-stat {
width: 24px;
height: 24px;
margin-right: 4px;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .rollable:hover,
.fvtt-hellborn .creature-main .creature-skills .creature-skill .rollable:focus {
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat .rollable:hover,
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .rollable {
min-width: 4.5rem;
max-width: 4.5rem;
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat .rollable {
min-width: 3.5rem;
max-width: 3.5rem;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .char-text {
margin-left: 0.5rem;
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat input {
min-width: 2.5rem;
max-width: 2.5rem;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .d100 {
flex: 0;
max-width: 0.6rem;
.fvtt-hellborn .enemy-main .enemy-stats-play {
min-width: 120px;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .form-group {
flex: 0;
padding-left: 5px;
.fvtt-hellborn .enemy-main .enemy-stats-edit {
min-width: 120px;
}
.fvtt-hellborn .creature-main .creature-skills .creature-skill .form-group .form-fields {
font-size: 1.1rem;
flex: none;
width: 40px;
}
.fvtt-hellborn .creature-main .creature-skill-play {
min-width: 225px;
}
.fvtt-hellborn .creature-main .creature-skill-edit {
min-width: 225px;
}
.fvtt-hellborn .creature-biography {
background-color: var(--color-light-1);
}
.fvtt-hellborn .creature-biography prose-mirror.inactive {
min-height: 40px;
}
.fvtt-hellborn .creature-biography prose-mirror.active {
min-height: 150px;
}
.fvtt-hellborn .creature-biography .field-label {
margin-left: 8px;
}
.fvtt-hellborn .creature-biography .rank {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 8px;
}
.fvtt-hellborn .creature-biography .rank label {
min-width: 6rem;
}
.fvtt-hellborn .creature-biography .rank input {
max-width: 4rem;
}
.fvtt-hellborn .creature-biography .biodata {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.fvtt-hellborn .creature-biography .biodata label {
min-width: 12rem;
}
.fvtt-hellborn .creature-biography .resources {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}
.fvtt-hellborn .creature-biography .resources label {
min-width: 8rem;
}
.fvtt-hellborn .creature-biography .features,
.fvtt-hellborn .creature-biography .biodata {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.fvtt-hellborn .creature-biography .features label,
.fvtt-hellborn .creature-biography .biodata label {
min-width: 3rem;
}
.fvtt-hellborn .creature-biography .features .feature,
.fvtt-hellborn .creature-biography .biodata .feature {
display: flex;
align-items: center;
gap: 4px;
min-width: 18rem;
max-width: 18rem;
}
.fvtt-hellborn .tab.creature-skills {
background-color: var(--color-light-1);
.fvtt-hellborn .tab.enemy-traits .main-div {
/*background-color: var(--color-light-1);*/
display: grid;
grid-template-columns: 1fr;
}
.fvtt-hellborn .tab.creature-skills legend a {
.fvtt-hellborn .tab.enemy-traits .main-div legend a {
font-size: calc(var(--font-size-standard) * 1.4);
padding-left: 5px;
}
.fvtt-hellborn .tab.creature-skills .skills {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-skills .skills .skill {
.fvtt-hellborn .tab.enemy-traits .main-div .mortality {
display: flex;
align-items: center;
gap: 4px;
margin-left: 4px;
min-width: 12.3rem;
max-width: 12.3rem;
}
.fvtt-hellborn .tab.creature-skills .skills .skill .rollable:hover,
.fvtt-hellborn .tab.creature-skills .skills .skill .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-skills .skills .skill .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-skills .skills .skill .score {
min-width: 1.2rem;
max-width: 1.2rem;
}
.fvtt-hellborn .tab.creature-skills .skills .skill .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-skills .skills .skill .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-status {
background-color: var(--color-light-1);
display: grid;
grid-template-columns: 1fr;
}
.fvtt-hellborn .tab.creature-status legend a {
font-size: calc(var(--font-size-standard) * 1.4);
padding-left: 5px;
}
.fvtt-hellborn .tab.creature-status .bonds {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-status .bonds .bond {
display: flex;
align-items: center;
gap: 4px;
min-width: 18rem;
max-width: 18rem;
}
.fvtt-hellborn .tab.creature-status .bonds .bond .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-status .bonds .bond .name {
min-width: 12rem;
max-width: 12rem;
}
.fvtt-hellborn .tab.creature-status .bonds .bond .type {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.creature-status .bonds .bond .level {
min-width: 2rem;
max-width: 2rem;
}
.fvtt-hellborn .tab.creature-status .bonds .bond .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-status .motivations {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-status .motivations .motivation {
display: flex;
align-items: center;
gap: 4px;
min-width: 14rem;
max-width: 14rem;
}
.fvtt-hellborn .tab.creature-status .motivations .motivation .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-status .motivations .motivation .name {
min-width: 12rem;
max-width: 12rem;
}
.fvtt-hellborn .tab.creature-status .motivations .motivation .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-status .mentaldisorders {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-status .mentaldisorders .mentaldisorder {
display: flex;
align-items: center;
gap: 4px;
min-width: 18rem;
max-width: 18rem;
}
.fvtt-hellborn .tab.creature-status .mentaldisorders .mentaldisorder .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-status .mentaldisorders .mentaldisorder .name {
min-width: 14rem;
max-width: 14rem;
}
.fvtt-hellborn .tab.creature-status .mentaldisorders .mentaldisorder .cured {
.fvtt-hellborn .tab.enemy-traits .main-div .mortality label {
min-width: 5rem;
max-width: 5rem;
}
.fvtt-hellborn .tab.creature-status .mentaldisorders .mentaldisorder .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-status .injuries {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-status .injuries .injury {
.fvtt-hellborn .tab.enemy-traits .main-div .counters {
display: flex;
direction: column;
align-items: center;
gap: 4px;
min-width: 16rem;
max-width: 16rem;
margin-left: 4px;
}
.fvtt-hellborn .tab.creature-status .injuries .injury .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
.fvtt-hellborn .tab.enemy-traits .main-div .counters .characteristics-label {
color: grey;
font-size: small;
}
.fvtt-hellborn .tab.creature-status .injuries .injury .name {
min-width: 14rem;
max-width: 14rem;
}
.fvtt-hellborn .tab.creature-status .injuries .injury .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-traits {
background-color: var(--color-light-1);
display: grid;
grid-template-columns: 1fr;
}
.fvtt-hellborn .tab.creature-traits legend a {
font-size: calc(var(--font-size-standard) * 1.4);
padding-left: 5px;
}
.fvtt-hellborn .tab.creature-traits .traits {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-traits .traits .trait {
display: flex;
align-items: center;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
}
.fvtt-hellborn .tab.creature-traits .traits .trait .rollable:hover,
.fvtt-hellborn .tab.creature-traits .traits .trait .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-traits .traits .trait .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-traits .traits .trait .damage {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.creature-traits .traits .trait .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-traits .traits .trait .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-traits .abilities {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-traits .abilities .ability {
display: flex;
align-items: center;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
}
.fvtt-hellborn .tab.creature-traits .abilities .ability .rollable:hover,
.fvtt-hellborn .tab.creature-traits .abilities .ability .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-traits .abilities .ability .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-traits .abilities .ability .damage {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.creature-traits .abilities .ability .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-traits .abilities .ability .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-traits .psionics {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-traits .psionics .psionic {
display: flex;
align-items: center;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
}
.fvtt-hellborn .tab.creature-traits .psionics .psionic .rollable:hover,
.fvtt-hellborn .tab.creature-traits .psionics .psionic .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-traits .psionics .psionic .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-traits .psionics .psionic .damage {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.creature-traits .psionics .psionic .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-traits .psionics .psionic .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-equipment {
background-color: var(--color-light-1);
display: grid;
grid-template-columns: 1fr;
}
.fvtt-hellborn .tab.creature-equipment legend a {
font-size: calc(var(--font-size-standard) * 1.4);
padding-left: 5px;
}
.fvtt-hellborn .tab.creature-equipment .encumbrance {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-equipment .encumbrance input {
.fvtt-hellborn .tab.enemy-traits .main-div .counters label {
min-width: 4rem;
max-width: 4rem;
}
.fvtt-hellborn .tab.creature-equipment .encumbrance .encumbered {
color: red;
font-weight: bold;
.fvtt-hellborn .tab.enemy-traits .main-div .counters .spaced-left {
margin-left: 0.8rem;
}
.fvtt-hellborn .tab.creature-equipment .implants {
.fvtt-hellborn .tab.enemy-traits .main-div .counters input {
min-width: 2.5rem;
max-width: 2.5rem;
}
.fvtt-hellborn .tab.enemy-traits .main-div .traits {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(1, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-equipment .implants .implant {
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait {
display: flex;
align-items: center;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
margin-left: 4px;
min-width: 20rem;
max-width: 20rem;
}
.fvtt-hellborn .tab.creature-equipment .implants .implant .rollable:hover,
.fvtt-hellborn .tab.creature-equipment .implants .implant .rollable:focus {
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .rollable:hover,
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-equipment .implants .implant .controls {
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-equipment .implants .implant .damage {
min-width: 6rem;
max-width: 6rem;
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .flavor {
min-width: 24rem;
max-width: 24rem;
}
.fvtt-hellborn .tab.creature-equipment .implants .implant .name {
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .role {
min-width: 5rem;
max-width: 5rem;
}
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .level {
min-width: 4rem;
max-width: 4rem;
}
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-equipment .implants .implant .item-img {
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-equipment .weapons {
.fvtt-hellborn .tab.enemy-traits .main-div .weapons {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(1, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-equipment .weapons .weapon {
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon {
display: flex;
align-items: center;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
}
.fvtt-hellborn .tab.creature-equipment .weapons .weapon .rollable:hover,
.fvtt-hellborn .tab.creature-equipment .weapons .weapon .rollable:focus {
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .rollable:hover,
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-equipment .weapons .weapon .controls {
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-equipment .weapons .weapon .damage {
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .properties {
min-width: 21rem;
max-width: 21rem;
}
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .type {
min-width: 4rem;
max-width: 4rem;
}
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .damage {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.creature-equipment .weapons .weapon .name {
min-width: 10rem;
max-width: 10rem;
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .name {
min-width: 12rem;
max-width: 12rem;
}
.fvtt-hellborn .tab.creature-equipment .weapons .weapon .item-img {
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-equipment .armors {
.fvtt-hellborn .tab.enemy-biography .main-div {
/*background-color: var(--color-light-1);*/
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 4px;
grid-template-columns: 1fr;
}
.fvtt-hellborn .tab.creature-equipment .armors .armor {
.fvtt-hellborn .tab.enemy-biography .main-div legend a {
font-size: calc(var(--font-size-standard) * 1.4);
padding-left: 5px;
}
.fvtt-hellborn .tab.enemy-biography .main-div .splitted-text {
display: flex;
align-items: center;
flex-direction: row;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
}
.fvtt-hellborn .tab.creature-equipment .armors .armor .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
.fvtt-hellborn .tab.enemy-biography .main-div .splitted-text fieldset {
width: 100%;
}
.fvtt-hellborn .tab.creature-equipment .armors .armor .protection {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.creature-equipment .armors .armor .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-equipment .armors .armor .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-equipment .equipments {
.fvtt-hellborn .tab.enemy-biography .main-div .deals {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.creature-equipment .equipments .equipment {
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal {
display: flex;
align-items: center;
gap: 4px;
min-width: 13rem;
max-width: 13rem;
margin-left: 4px;
min-width: 12rem;
max-width: 12rem;
}
.fvtt-hellborn .tab.creature-equipment .equipments .equipment .rollable:hover,
.fvtt-hellborn .tab.creature-equipment .equipments .equipment .rollable:focus {
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .rollable:hover,
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.fvtt-hellborn .tab.creature-equipment .equipments .equipment .controls {
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .controls {
font-size: 0.7rem;
min-width: 1.8rem;
max-width: 1.8rem;
}
.fvtt-hellborn .tab.creature-equipment .equipments .equipment .name {
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .name {
min-width: 10rem;
max-width: 10rem;
}
.fvtt-hellborn .tab.creature-equipment .equipments .equipment .item-img {
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .item-img {
width: 24px;
height: 24px;
margin: 4px 0 0 0;
}
.fvtt-hellborn .tab.creature-equipment prose-mirror.inactive {
.fvtt-hellborn .tab.enemy-biography .main-div .biodata {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 4px;
}
.fvtt-hellborn .tab.enemy-biography .main-div .biodata .experience {
display: flex;
flex-direction: row;
align-items: center;
gap: 4px;
margin-left: 4px;
}
.fvtt-hellborn .tab.enemy-biography .main-div .biodata .form-group {
display: flex;
flex-direction: row;
align-items: center;
gap: 4px;
margin-left: 4px;
min-width: 14rem;
max-width: 14rem;
}
.fvtt-hellborn .tab.enemy-biography .main-div .biodata .form-group label {
min-width: 6rem;
max-width: 6rem;
}
.fvtt-hellborn .tab.enemy-biography .main-div .biodata input {
text-align: left;
min-width: 8rem;
max-width: 8rem;
}
.fvtt-hellborn .tab.enemy-biography .main-div prose-mirror.inactive {
min-height: 40px;
}
.fvtt-hellborn .tab.creature-equipment prose-mirror.active {
.fvtt-hellborn .tab.enemy-biography .main-div prose-mirror.active {
min-height: 150px;
}
.fvtt-hellborn .weapon-content {
@@ -2557,6 +2269,18 @@ i.fvtt-hellborn {
font-size: calc(var(--font-size-standard) * 2);
color: var(--color-dark-1);
}
.item-to-chat ul {
list-style-type: none;
padding: 0;
margin: 0;
justify-content: center;
align-items: center;
}
.item-to-chat ul li {
margin: 0 10px;
font-family: var(--font-primary);
font-size: calc(var(--font-size-standard) * 1);
}
.dice-roll {
flex-direction: column;
}