Enhance CSS
All checks were successful
Release Creation / build (release) Successful in 54s

This commit is contained in:
2025-06-17 00:40:51 +02:00
parent eea83aa10e
commit fb5c408bbd
3 changed files with 23 additions and 13 deletions

View File

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

View File

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

View File

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