mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* new companion sheet templates * Data fixes * Changed from evasion.value to evasion.total in display * add attack config and disable experience value input --------- Co-authored-by: WBHarry <williambjrklund@gmail.com>
75 lines
1.8 KiB
Text
75 lines
1.8 KiB
Text
@import '../../utils/colors.less';
|
|
@import '../../utils/fonts.less';
|
|
|
|
.application.sheet.daggerheart.actor.dh-style.companion {
|
|
.partner-section,
|
|
.attack-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.title {
|
|
display: flex;
|
|
gap: 15px;
|
|
align-items: center;
|
|
|
|
h3 {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
.items-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.partner-placeholder {
|
|
display: flex;
|
|
opacity: 0.6;
|
|
text-align: center;
|
|
font-style: italic;
|
|
justify-content: center;
|
|
}
|
|
|
|
.experience-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
align-items: center;
|
|
|
|
.experience-row {
|
|
display: flex;
|
|
gap: 5px;
|
|
width: 250px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.experience-name {
|
|
width: 180px;
|
|
text-align: start;
|
|
font-size: 14px;
|
|
font-family: @font-body;
|
|
color: light-dark(@dark, @beige);
|
|
}
|
|
}
|
|
|
|
.experience-value {
|
|
height: 25px;
|
|
width: 35px;
|
|
font-size: 14px;
|
|
font-family: @font-body;
|
|
color: light-dark(@dark, @beige);
|
|
align-content: center;
|
|
text-align: center;
|
|
background: url(../assets/svg/experience-shield.svg) no-repeat;
|
|
|
|
.theme-light & {
|
|
background: url('../assets/svg/experience-shield-light.svg') no-repeat;
|
|
}
|
|
}
|
|
}
|
|
}
|