All checks were successful
Release Creation / build (release) Successful in 59s
2489 lines
67 KiB
CSS
2489 lines
67 KiB
CSS
@font-face {
|
|
font-family: "MinionProRegular";
|
|
src: url("../assets/fonts/Minion Pro Regular.ttf") format("truetype");
|
|
}
|
|
@font-face {
|
|
font-family: "SupernaturalKnight";
|
|
src: url("../assets/fonts/Supernatural_Knight.ttf") format("truetype");
|
|
}
|
|
:root {
|
|
--font-size-standard: 0.9rem;
|
|
--font-size-result: 1.4rem;
|
|
--background-image-base: url("../assets/ui/sheet_background_01.webp");
|
|
--font-primary: "MinionProRegular";
|
|
--font-secondary: "MinionProRegular";
|
|
--font-title: "SupernaturalKnight";
|
|
--logo-standard: url("../assets/ui/pentagram_logo.webp");
|
|
--title-color: #f0443c;
|
|
--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;
|
|
height: 50px;
|
|
margin-left: 15px;
|
|
}
|
|
.scrollable-content {
|
|
max-height: 600px;
|
|
overflow-y: auto;
|
|
padding-right: 10px;
|
|
}
|
|
nav.tabs [data-tab] {
|
|
color: var(--title-color);
|
|
}
|
|
#pause > img {
|
|
content: var(--logo-standard);
|
|
height: 256px;
|
|
width: 256px;
|
|
top: -45px;
|
|
left: calc(50% - 96px);
|
|
}
|
|
i.fvtt-hellborn {
|
|
width: 36px;
|
|
height: 36px;
|
|
background-image: var(--logo-standard);
|
|
background-size: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
position: relative;
|
|
filter: grayscale(1);
|
|
transition: 0.3s;
|
|
}
|
|
.application.dialog.fvtt-hellborn {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
background-image: var(--background-image-base);
|
|
}
|
|
.application.dialog.fvtt-hellborn button:hover {
|
|
background: var(--color-dark-6);
|
|
}
|
|
.application.dialog.fvtt-hellborn .legend {
|
|
font-family: var(--font-primary);
|
|
}
|
|
.chat-message,
|
|
.chat-message.whisper {
|
|
font-family: var(--font-primary);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: repeat-y;
|
|
background-position: 0%;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .character-sheet-common label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .vehicle-sheet-common label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .enemy-sheet-common label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .item-sheet-common .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .item-sheet-common label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .item-sheet-common .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .item-sheet-common .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .character-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
overflow: scroll;
|
|
}
|
|
.fvtt-hellborn .character-content input:disabled,
|
|
.fvtt-hellborn .character-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .character-content input,
|
|
.fvtt-hellborn .character-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .character-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .character-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .character-content .form-fields input,
|
|
.fvtt-hellborn .character-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .character-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .character-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .character-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 .character-main {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex: 1;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left {
|
|
min-width: 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-left-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-bottom: 8px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-left-image .character-img {
|
|
height: 140px;
|
|
width: auto;
|
|
border: none;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-hp {
|
|
gap: 2px;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-hp input {
|
|
flex: none;
|
|
width: 2.5rem;
|
|
margin-left: 2px;
|
|
margin-right: 4px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-hp .hp-separator {
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-dv .form-fields,
|
|
.fvtt-hellborn .character-main .character-pc .character-left .character-dmax .form-fields {
|
|
flex: none;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-definition .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 4px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-definition .splitted {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-definition label {
|
|
max-width: 5rem;
|
|
min-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-definition input {
|
|
text-align: left;
|
|
min-width: 9rem;
|
|
max-width: 9rem;
|
|
margin-bottom: auto;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-definition .trait {
|
|
min-width: 7rem;
|
|
max-width: 7rem;
|
|
margin-right: 1rem;
|
|
margin-bottom: auto;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-name {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right .character-name input {
|
|
font-family: var(--font-title);
|
|
font-size: var(--font-size-title);
|
|
width: 400px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc .character-right label {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc-play {
|
|
min-width: 500px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-pc-edit {
|
|
min-width: 500px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
flex: 1;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats .character-stat {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats .character-stat .icon-stat {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 4px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats .character-stat .rollable:hover,
|
|
.fvtt-hellborn .character-main .character-stats .character-stat .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats .character-stat .rollable {
|
|
min-width: 3.5rem;
|
|
max-width: 3.5rem;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats .character-stat input {
|
|
min-width: 2.5rem;
|
|
max-width: 2.5rem;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats-play {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .character-main .character-stats-edit {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div legend a {
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
padding-left: 5px;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .mortality {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .mortality label {
|
|
min-width: 5rem;
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .counters {
|
|
display: flex;
|
|
direction: column;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .counters .characteristics-label {
|
|
color: grey;
|
|
font-size: small;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .counters label {
|
|
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;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .ailments {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .ailments .ailment {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 8rem;
|
|
max-width: 8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .ailments .ailment label {
|
|
min-width: 5rem;
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .ailments .ailment .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 20rem;
|
|
max-width: 20rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .rollable:hover,
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .flavor {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .role {
|
|
min-width: 5rem;
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .level {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-status .main-div .perks .perk .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div legend a {
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
padding-left: 5px;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 20rem;
|
|
max-width: 20rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica .damage {
|
|
min-width: 3.2rem;
|
|
max-width: 3.2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica .domain {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica .level {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .maleficas .malefica .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 14rem;
|
|
max-width: 14rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .ingredients {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .name {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .difficulty {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .threshold {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .limit {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-maleficas .main-div .rituals .ritual .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div legend a {
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
padding-left: 5px;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .limboes {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .limboes .limboes-line {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .limboes .form-group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
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: 8rem;
|
|
max-width: 8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 13rem;
|
|
max-width: 13rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .rollable:hover,
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .properties {
|
|
min-width: 16.3rem;
|
|
max-width: 16.3rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .range {
|
|
min-width: 4.5rem;
|
|
max-width: 4.5rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .ammo {
|
|
min-width: 4.5rem;
|
|
max-width: 4.5rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .type {
|
|
min-width: 3rem;
|
|
max-width: 3rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .damage {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .weapons .weapon .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 13rem;
|
|
max-width: 13rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor .bonus {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor .resilience {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor .reduction {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor .name {
|
|
min-width: 13.5rem;
|
|
max-width: 13.5rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .armors .armor .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 13rem;
|
|
max-width: 13rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment .rollable:hover,
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment .quantity {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div .equipments .equipment .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div prose-mirror.inactive {
|
|
min-height: 40px;
|
|
}
|
|
.fvtt-hellborn .tab.character-equipment .main-div prose-mirror.active {
|
|
min-height: 150px;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div legend a {
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
padding-left: 5px;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .splitted-text {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .splitted-text fieldset {
|
|
width: 100%;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals .deal {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals .deal .rollable:hover,
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals .deal .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals .deal .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals .deal .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .deals .deal .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .biodata {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .biodata .experience {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.character-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.character-biography .main-div .biodata .form-group label {
|
|
min-width: 6rem;
|
|
max-width: 6rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div .biodata input {
|
|
text-align: left;
|
|
min-width: 8rem;
|
|
max-width: 8rem;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div prose-mirror.inactive {
|
|
min-height: 40px;
|
|
}
|
|
.fvtt-hellborn .tab.character-biography .main-div prose-mirror.active {
|
|
min-height: 150px;
|
|
}
|
|
.fvtt-hellborn .vehicle-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
overflow: scroll;
|
|
}
|
|
.fvtt-hellborn .vehicle-content input:disabled,
|
|
.fvtt-hellborn .vehicle-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .vehicle-content input,
|
|
.fvtt-hellborn .vehicle-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .vehicle-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .vehicle-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .vehicle-content .form-fields input,
|
|
.fvtt-hellborn .vehicle-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .vehicle-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .vehicle-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .vehicle-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 .vehicle-main {
|
|
background-color: var(--color-light-1);
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex: 1;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-left {
|
|
min-width: 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-left .vehicle-left-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-bottom: 8px;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-left .vehicle-left-image .vehicle-img {
|
|
height: 140px;
|
|
width: auto;
|
|
border: none;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-name {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-name input {
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
width: 400px;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .cargo label,
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .capacity label {
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .cargo input,
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .capacity input {
|
|
max-width: 3.5rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos label {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos .vehicle-hp {
|
|
display: flex;
|
|
gap: 2px;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos .vehicle-hp .vehicle-hp-value .form-fields input {
|
|
flex: none;
|
|
width: 50px;
|
|
margin-left: 4px;
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos .vehicle-hp .vehicle-hp-max {
|
|
clear: both;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin: 3px 0;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos .vehicle-hp .vehicle-hp-max input {
|
|
width: 50px;
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc .vehicle-right .vehicle-infos .vehicle-hp .hp-separator {
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc-play {
|
|
min-width: 500px;
|
|
}
|
|
.fvtt-hellborn .vehicle-main .vehicle-pc-edit {
|
|
min-width: 500px;
|
|
}
|
|
.fvtt-hellborn .vehicle-description {
|
|
background-color: var(--color-light-1);
|
|
}
|
|
.fvtt-hellborn .vehicle-description prose-mirror.inactive {
|
|
min-height: 40px;
|
|
}
|
|
.fvtt-hellborn .vehicle-description prose-mirror.active {
|
|
min-height: 150px;
|
|
}
|
|
.fvtt-hellborn .vehicle-description .field-label {
|
|
margin-left: 8px;
|
|
}
|
|
.fvtt-hellborn .vehicle-description .biodata {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 8px;
|
|
}
|
|
.fvtt-hellborn .vehicle-description .biodata label {
|
|
min-width: 3rem;
|
|
}
|
|
.fvtt-hellborn .vehicle-description .biodata .feature {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 18rem;
|
|
max-width: 18rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment {
|
|
background-color: var(--color-light-1);
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment legend a {
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
padding-left: 5px;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 13rem;
|
|
max-width: 13srem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon .rollable:hover,
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon .controls {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon .damage {
|
|
min-width: 5rem;
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon .name {
|
|
min-width: 8rem;
|
|
max-width: 8rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .weapons .weapon .item-img {
|
|
width: 32px;
|
|
height: 32px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 13rem;
|
|
max-width: 13srem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment .rollable:hover,
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment .controls {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment .damage {
|
|
min-width: 5rem;
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment .name {
|
|
min-width: 8rem;
|
|
max-width: 8rem;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment .equipments .equipment .item-img {
|
|
width: 32px;
|
|
height: 32px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment prose-mirror.inactive {
|
|
min-height: 40px;
|
|
}
|
|
.fvtt-hellborn .tab.vehicle-equipment prose-mirror.active {
|
|
min-height: 150px;
|
|
}
|
|
.fvtt-hellborn .enemy-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
overflow: scroll;
|
|
}
|
|
.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 .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 .enemy-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .enemy-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.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 .enemy-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.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 .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 .enemy-main {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex: 1;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left {
|
|
min-width: 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-left-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-bottom: 8px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-left-image .enemy-img {
|
|
height: 140px;
|
|
width: auto;
|
|
border: none;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-hp {
|
|
gap: 2px;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-left .enemy-hp input {
|
|
flex: none;
|
|
width: 2.5rem;
|
|
margin-left: 2px;
|
|
margin-right: 4px;
|
|
}
|
|
.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 .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 .enemy-main .enemy-pc .enemy-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 4px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition .splitted {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-definition label {
|
|
max-width: 5rem;
|
|
min-width: 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 .enemy-main .enemy-pc .enemy-right .enemy-definition .trait {
|
|
min-width: 7rem;
|
|
max-width: 7rem;
|
|
margin-right: 1rem;
|
|
margin-bottom: auto;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc .enemy-right .enemy-name {
|
|
display: flex;
|
|
}
|
|
.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 .enemy-main .enemy-pc .enemy-right label {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc-play {
|
|
min-width: 500px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-pc-edit {
|
|
min-width: 500px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-stats {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
flex: 1;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat .icon-stat {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 4px;
|
|
}
|
|
.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 .enemy-main .enemy-stats .enemy-stat .rollable {
|
|
min-width: 3.5rem;
|
|
max-width: 3.5rem;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-stats .enemy-stat input {
|
|
min-width: 2.5rem;
|
|
max-width: 2.5rem;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-stats-play {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .enemy-main .enemy-stats-edit {
|
|
min-width: 120px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div legend a {
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
padding-left: 5px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .enemy-column {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .enemy-column fieldset {
|
|
width: 100%;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .mortality {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .mortality label {
|
|
min-width: 5rem;
|
|
max-width: 5rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .counters {
|
|
display: flex;
|
|
direction: column;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .counters .characteristics-label {
|
|
color: grey;
|
|
font-size: small;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .counters .characteristics-label label {
|
|
min-width: 3.5rem;
|
|
max-width: 3.5rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .counters .characteristics-label span {
|
|
min-width: 3rem;
|
|
max-width: 3rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .counters label {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .counters .spaced-left {
|
|
margin-left: 0.8rem;
|
|
}
|
|
.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(1, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.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.enemy-traits .main-div .traits .trait .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .name {
|
|
min-width: 18rem;
|
|
max-width: 18rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .traits .trait .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments .equipment {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 13rem;
|
|
max-width: 13rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments .equipment .rollable:hover,
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments .equipment .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments .equipment .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments .equipment .name {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .equipments .equipment .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .rollable:hover,
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .rollable:focus {
|
|
text-shadow: 0 0 8px var(--color-shadow-primary);
|
|
cursor: pointer;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .domain {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .damage {
|
|
min-width: 3.2rem;
|
|
max-width: 3.2rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .level {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .name {
|
|
min-width: 10rem;
|
|
max-width: 10em;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .maleficas .malefica .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.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.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.enemy-traits .main-div .weapons .weapon .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .properties {
|
|
min-width: 18rem;
|
|
max-width: 18rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .range {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .ammo {
|
|
min-width: 3rem;
|
|
max-width: 3rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .type {
|
|
min-width: 3rem;
|
|
max-width: 3rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .damage {
|
|
min-width: 4rem;
|
|
max-width: 4rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-traits .main-div .weapons .weapon .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-biography .main-div {
|
|
/*background-color: var(--color-light-1);*/
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.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;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-biography .main-div .splitted-text fieldset {
|
|
width: 100%;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-biography .main-div .deals {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 4px;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.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.enemy-biography .main-div .deals .deal .controls {
|
|
font-size: 0.7rem;
|
|
min-width: 1.8rem;
|
|
max-width: 1.8rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .name {
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
.fvtt-hellborn .tab.enemy-biography .main-div .deals .deal .item-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
.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.enemy-biography .main-div prose-mirror.active {
|
|
min-height: 150px;
|
|
}
|
|
.fvtt-hellborn .weapon-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .weapon-content input:disabled,
|
|
.fvtt-hellborn .weapon-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .weapon-content input,
|
|
.fvtt-hellborn .weapon-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .weapon-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .weapon-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .weapon-content .form-fields input,
|
|
.fvtt-hellborn .weapon-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .weapon-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .weapon-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .weapon-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .weapon-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .weapon-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .weapon-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .weapon-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .weapon-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .weapon-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .weapon-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .weapon-content fieldset .form-group.long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
text-align: left;
|
|
}
|
|
.fvtt-hellborn .weapon-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .weapon-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .weapon-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .equipment-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .equipment-content input:disabled,
|
|
.fvtt-hellborn .equipment-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .equipment-content input,
|
|
.fvtt-hellborn .equipment-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .equipment-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .equipment-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .equipment-content .form-fields input,
|
|
.fvtt-hellborn .equipment-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .equipment-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .equipment-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .equipment-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .equipment-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .equipment-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .equipment-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .equipment-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .equipment-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .equipment-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .equipment-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .equipment-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .equipment-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .equipment-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .armor-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .armor-content input:disabled,
|
|
.fvtt-hellborn .armor-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .armor-content input,
|
|
.fvtt-hellborn .armor-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .armor-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .armor-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .armor-content .form-fields input,
|
|
.fvtt-hellborn .armor-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .armor-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .armor-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .armor-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .armor-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .armor-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .armor-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .armor-content .header {
|
|
background-color: var(--color-light-1);
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .armor-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .armor-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .armor-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .armor-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .armor-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .armor-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .deal-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .deal-content input:disabled,
|
|
.fvtt-hellborn .deal-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .deal-content input,
|
|
.fvtt-hellborn .deal-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .deal-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .deal-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .deal-content .form-fields input,
|
|
.fvtt-hellborn .deal-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .deal-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .deal-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .deal-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .deal-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .deal-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .deal-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .deal-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .deal-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .deal-content fieldset .form-group.long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
text-align: left;
|
|
}
|
|
.fvtt-hellborn .deal-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .deal-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .deal-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .deal-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .deal-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .tarot-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .tarot-content input:disabled,
|
|
.fvtt-hellborn .tarot-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .tarot-content input,
|
|
.fvtt-hellborn .tarot-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .tarot-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .tarot-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .tarot-content .form-fields input,
|
|
.fvtt-hellborn .tarot-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .tarot-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .tarot-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .tarot-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .tarot-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .tarot-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .tarot-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .tarot-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .tarot-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .tarot-content fieldset .form-group.long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
text-align: left;
|
|
}
|
|
.fvtt-hellborn .tarot-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tarot-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .tarot-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .tarot-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .tarot-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .ritual-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .ritual-content input:disabled,
|
|
.fvtt-hellborn .ritual-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .ritual-content input,
|
|
.fvtt-hellborn .ritual-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .ritual-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .ritual-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .ritual-content .form-fields input,
|
|
.fvtt-hellborn .ritual-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .ritual-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .ritual-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .ritual-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .ritual-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .ritual-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .ritual-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .ritual-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .ritual-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .ritual-content fieldset .form-group.long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
text-align: left;
|
|
}
|
|
.fvtt-hellborn .ritual-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .ritual-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .ritual-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .ritual-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .ritual-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .perk-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .perk-content input:disabled,
|
|
.fvtt-hellborn .perk-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .perk-content input,
|
|
.fvtt-hellborn .perk-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .perk-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .perk-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .perk-content .form-fields input,
|
|
.fvtt-hellborn .perk-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .perk-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .perk-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .perk-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .perk-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .perk-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .perk-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .perk-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .perk-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .perk-content fieldset .form-group.long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
text-align: left;
|
|
}
|
|
.fvtt-hellborn .perk-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .perk-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .perk-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .perk-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .perk-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .malefica-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .malefica-content input:disabled,
|
|
.fvtt-hellborn .malefica-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .malefica-content input,
|
|
.fvtt-hellborn .malefica-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .malefica-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .malefica-content .form-fields input,
|
|
.fvtt-hellborn .malefica-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .malefica-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .malefica-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .malefica-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .malefica-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .malefica-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .malefica-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset .form-fields input[type="checkbox"] {
|
|
min-width: 2rem;
|
|
max-width: 2rem;
|
|
text-align: center;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset .form-group .long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
}
|
|
.fvtt-hellborn .malefica-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .malefica-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .malefica-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .malefica-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn .species-trait-content {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
.fvtt-hellborn .species-trait-content input:disabled,
|
|
.fvtt-hellborn .species-trait-content select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
.fvtt-hellborn .species-trait-content input,
|
|
.fvtt-hellborn .species-trait-content select {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn .species-trait-content input[name="name"] {
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
margin-top: 4px;
|
|
}
|
|
.fvtt-hellborn .species-trait-content fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
.fvtt-hellborn .species-trait-content .form-fields input,
|
|
.fvtt-hellborn .species-trait-content .form-fields select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .species-trait-content .form-fields select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.fvtt-hellborn .species-trait-content legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
.fvtt-hellborn .species-trait-content .form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
.fvtt-hellborn .species-trait-content label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
.fvtt-hellborn .species-trait-content .align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.fvtt-hellborn .species-trait-content .shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
.fvtt-hellborn .species-trait-content fieldset {
|
|
margin-top: 8px;
|
|
}
|
|
.fvtt-hellborn .species-trait-content fieldset .form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.fvtt-hellborn .species-trait-content fieldset .form-group.long-input input {
|
|
min-width: 24rem;
|
|
max-width: 24rem;
|
|
text-align: left;
|
|
}
|
|
.fvtt-hellborn .species-trait-content fieldset .form-group input {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .species-trait-content fieldset .form-group select {
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
.fvtt-hellborn .species-trait-content .header {
|
|
display: flex;
|
|
}
|
|
.fvtt-hellborn .species-trait-content .header img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.fvtt-hellborn .species-trait-content label {
|
|
flex: 10%;
|
|
}
|
|
.fvtt-hellborn.ask-roll {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.1);
|
|
}
|
|
.application.dialog.fvtt-hellborn {
|
|
color: var(--color-dark-1);
|
|
background-color: var(--color-light-1);
|
|
}
|
|
.application.dialog.fvtt-hellborn button {
|
|
background-image: none;
|
|
background-color: var(--color-dark-6);
|
|
color: var(--color-light-1);
|
|
}
|
|
.application.dialog.fvtt-hellborn input,
|
|
.application.dialog.fvtt-hellborn select {
|
|
text-align: left;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
.fvtt-hellborn-roll-dialog fieldset {
|
|
padding: 10px;
|
|
background-color: var(--color-light-1);
|
|
}
|
|
.dialog-modifier {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.dialog-modifier select {
|
|
border: none;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
color: var(--color-dark-2);
|
|
width: 10rem;
|
|
text-align: center;
|
|
}
|
|
.red-warning {
|
|
color: var(--color-failure);
|
|
}
|
|
.orange-warning {
|
|
color: var(--color-warning);
|
|
}
|
|
.dialog-damage {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 2);
|
|
color: var(--color-dark-1);
|
|
}
|
|
.item-to-chat h2 {
|
|
margin-top: 10px;
|
|
margin-left: 10px;
|
|
margin-bottom: 4px;
|
|
font-family: var(--font-title);
|
|
font-size: calc(var(--font-size-standard) * 1.4);
|
|
color: var(--title-color);
|
|
}
|
|
.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;
|
|
}
|
|
.dice-roll .dice-total,
|
|
.dice-roll .dice-formula {
|
|
padding-top: 5px;
|
|
}
|
|
.dice-roll .dice-total {
|
|
margin-bottom: 5px;
|
|
}
|
|
.dice-roll .message-header {
|
|
font-family: var(--font-primary);
|
|
}
|
|
.dice-roll img {
|
|
border: 0px;
|
|
}
|
|
.dice-roll .intro-chat {
|
|
color: var(--color-dark-1);
|
|
border-radius: 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.dice-roll .intro-chat .intro-img {
|
|
padding: 4px;
|
|
max-width: 80px;
|
|
min-width: 80px;
|
|
align-self: top;
|
|
text-align: center;
|
|
}
|
|
.dice-roll .intro-chat .intro-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul li {
|
|
margin: 0 10px;
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul .nudge-roll {
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
margin-left: 4rem;
|
|
display: none;
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul .result-unknown {
|
|
color: var(--color-dark-2);
|
|
font-family: var(--font-title);
|
|
font-size: var(--font-size-result);
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul .result-success {
|
|
color: var(--color-success);
|
|
font-family: var(--font-title);
|
|
font-size: var(--font-size-result);
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul .result-satanic-success {
|
|
color: var(--color-critical-success);
|
|
font-family: var(--font-title);
|
|
font-size: var(--font-size-result);
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul .result-failure {
|
|
color: var(--color-failure);
|
|
font-family: var(--font-title);
|
|
font-size: var(--font-size-result);
|
|
}
|
|
.dice-roll .intro-chat .intro-right ul .result-fiendish-failure {
|
|
color: var(--color-critical-failure);
|
|
font-family: var(--font-title);
|
|
font-size: var(--font-size-result);
|
|
}
|
|
.dice-roll .intro-chat .intro-right .introText {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
width: 210px;
|
|
margin-left: 20px;
|
|
}
|
|
.dice-roll .result {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
text-shadow: 0 0 10px var(--color-shadow-primary);
|
|
}
|