Nombreuses corrections sur les fiches settlement/NPC

This commit is contained in:
2026-03-22 21:35:47 +01:00
parent ec291e9c60
commit b46c6d804c
51 changed files with 2892 additions and 227 deletions

View File

@@ -325,4 +325,58 @@
text-align: center;
font-weight: bold;
}
// ── Magic tab — Arcane Stress row ──────────────────────────
.stress-controls {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: nowrap;
padding: 4px 0;
.stress-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
border: 1px solid @color-olive;
border-radius: 3px;
background: fade(@color-dark, 6%);
color: @color-dark;
font-size: 1rem;
line-height: 1;
cursor: pointer;
flex-shrink: 0;
text-decoration: none;
&:hover { background: fade(@color-blue, 15%); border-color: @color-blue; }
}
.arcane-stress-display {
font-family: @font-secondary;
font-size: @font-size-lg;
font-weight: bold;
color: @color-dark;
min-width: 3rem;
text-align: center;
flex-shrink: 0;
&.stress-at-limit { color: #c0392b; }
}
.stress-bonus-label {
margin-left: auto; // push threshold bonus to the right
font-size: @font-size-sm;
color: @color-olive;
white-space: nowrap;
flex-shrink: 0;
}
.stress-bonus-input {
width: 3rem;
text-align: center;
flex-shrink: 0;
}
}
}