start development

This commit is contained in:
moliloo 2025-08-23 01:05:43 -03:00
parent fa8bd63614
commit 9a1ed95c9f
15 changed files with 277 additions and 4 deletions

View file

@ -0,0 +1,42 @@
@import '../../../utils/colors.less';
@import '../../../utils/fonts.less';
.party-header-sheet {
display: flex;
flex-direction: column;
justify-content: start;
text-align: center;
.profile {
height: 235px;
mask-image: linear-gradient(0deg, transparent 0%, black 10%);
cursor: pointer;
}
.item-container {
.item-name {
padding: 0 20px;
input[type='text'] {
font-size: 32px;
height: 42px;
text-align: center;
transition: all 0.3s ease;
outline: 2px solid transparent;
border: 1px solid transparent;
&:hover[type='text'],
&:focus[type='text'] {
box-shadow: none;
outline: 2px solid light-dark(@dark-blue, @golden);
}
}
}
.label {
font-style: normal;
font-weight: 700;
font-size: 16px;
margin: 5px 0;
}
}
}

View file

@ -0,0 +1,28 @@
@import '../../../utils/colors.less';
@import '../../../utils/fonts.less';
@import '../../../utils/mixin.less';
.appTheme({
&.party {
background-image: url('../assets/parchments/dh-parchment-dark.png');
}
}, {
&.party {
background: url('../assets/parchments/dh-parchment-light.png');
}
});
.application.sheet.daggerheart.actor.dh-style.party {
.tab {
max-height: 300px;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
&.active {
overflow: hidden;
display: flex;
flex-direction: column;
}
}
}

View file

@ -22,6 +22,9 @@
@import './actors/environment/header.less';
@import './actors/environment/sheet.less';
@import './actors/party/header.less';
@import './actors/party/sheet.less';
@import './items/beastform.less';
@import './items/class.less';
@import './items/domain-card.less';