1 Commits

Author SHA1 Message Date
fb5c408bbd Enhance CSS
All checks were successful
Release Creation / build (release) Successful in 54s
2025-06-17 00:40:51 +02:00
3 changed files with 23 additions and 13 deletions

View File

@@ -2444,6 +2444,9 @@ i.fvtt-hellborn {
justify-content: center;
align-items: center;
}
.item-to-chat ul .tarot-spacing {
margin-top: 0.5rem;
}
.item-to-chat ul li {
margin: 0 10px;
font-family: var(--font-primary);
@@ -2456,7 +2459,8 @@ i.fvtt-hellborn {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1.2);
color: var(--color-dark-2);
margin-top: 5px;
margin-top: 0px;
align-items: center;
}
.flavor-text-damage .chat-damage-type {
font-weight: bold;
@@ -2466,11 +2470,12 @@ i.fvtt-hellborn {
margin-bottom: 0.5rem;
}
.flavor-text-damage h2 {
margin-top: 10px;
margin-left: 10px;
margin-bottom: 4px;
text-align: center;
margin-top: 4px;
margin-left: 4px;
margin-bottom: 0px;
font-family: var(--font-title);
font-size: calc(var(--font-size-standard) * 1.2);
font-size: calc(var(--font-size-standard) * 1.1);
color: var(--title-color);
}
.dice-roll {

View File

@@ -69,6 +69,9 @@
margin: 0;
justify-content: center;
align-items: center;
.tarot-spacing {
margin-top: 0.5rem;
}
li {
margin: 0 10px;
font-family: var(--font-primary);
@@ -84,7 +87,8 @@
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1.2);
color: var(--color-dark-2);
margin-top: 5px;
margin-top: 0px;
align-items: center;
.chat-damage-type {
font-weight: bold;
display: flex;
@@ -93,11 +97,12 @@
margin-bottom:0.5rem;
}
h2 {
margin-top: 10px;
margin-left: 10px;
margin-bottom: 4px;
text-align: center;
margin-top: 4px;
margin-left: 4px;
margin-bottom: 0px;
font-family: var(--font-title);
font-size: calc(var(--font-size-standard) * 1.2);
font-size: calc(var(--font-size-standard) * 1.1);
color: var(--title-color);
}
}

View File

@@ -16,12 +16,12 @@
<li><strong>Reversed XP Trigger : </strong>{{system.penalty}}</li>
{{/if}}
<li><strong>Description : </strong>{{{system.description}}}</li>
<li class="tarot-spacing"><strong>Description : </strong>{{{system.description}}}</li>
{{#if (eq system.orientation "Upright")}}
<li><strong>Positive Effect : </strong>{{{system.positiveEffect}}}</li>
<li class="tarot-spacing"><strong>Positive Effect : </strong>{{{system.positiveEffect}}}</li>
{{else}}
<li><strong>Negative Effect : </strong>{{{system.negativeEffect}}}</li>
<li class="tarot-spacing"><strong>Negative Effect : </strong>{{{system.negativeEffect}}}</li>
{{/if}}
</ul>