Personnage : ajout métier, origine, âge et faction dans le header

DataModel : metier (StringField), faction (StringField) ajoutés au top-level
Template : identity-row sous le concept avec les 4 champs
CSS : .identity-row avec label orange + valeur crème italique

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-29 17:35:11 +02:00
parent 8f6f3823c6
commit 0e0d8920b7
4 changed files with 76 additions and 3 deletions

View File

@@ -107,7 +107,40 @@
background: transparent;
border-bottom: 1px solid rgba(240,232,212,0.25);
}
}
.identity-row {
display: flex;
flex-wrap: wrap;
gap: 6px 14px;
.identity-field {
display: flex;
align-items: baseline;
gap: 4px;
label {
font-size: 0.6em;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--cel-orange-light);
white-space: nowrap;
font-style: normal;
}
span, input[type="text"] {
font-size: 0.82em;
color: var(--cel-cream);
background: transparent;
border: none;
border-bottom: 1px solid rgba(240,232,212,0.2);
padding: 0 2px;
font-style: italic;
min-width: 60px;
&::placeholder { color: rgba(240,232,212,0.3); }
}
}
}
.header-stats-row {
display: flex;