mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Set up DhLevelTier datamodel * Added Levelup data model and started at the render * Fixed data handling in the LevelUp view * Added back the save function * Finalised levelup selections and propagating to PC * Added level advancement selection data * Added DomainCard selection * Css merge commit * Added PC level/delevel benefits of leveling up * Fixed sticky previous selections on continous leveling * Fixed up Summary. Fixed multiclass/subclass blocking on selection * Removed unused level.hbs * Fixed attribute base for PC * Improved naming of attribute properties * Renamed/structured resources/evasion/proficiency * Improved trait marking * Rework to level up once at a time * Added markers * Removed tabs when in Summary * Fixed multilevel buttons * Improved multiclass/subclass recognition * Fixed tagify error on selection * Review fixes
127 lines
2.5 KiB
Text
Executable file
127 lines
2.5 KiB
Text
Executable file
@import './variables/variables.less';
|
|
@import './variables/colors.less';
|
|
@import './class.less';
|
|
@import './pc.less';
|
|
@import './ui.less';
|
|
@import './chat.less';
|
|
@import './item.less';
|
|
@import './application.less';
|
|
@import './sheets/sheets.less';
|
|
@import './dialog.less';
|
|
@import './levelup.less';
|
|
@import '../node_modules/@yaireo/tagify/dist/tagify.css';
|
|
@import './resources.less';
|
|
|
|
// new styles imports
|
|
@import './less/items/feature.less';
|
|
@import './less/items/domainCard.less';
|
|
@import './less/items/class.less';
|
|
|
|
@import './less/utils/colors.less';
|
|
@import './less/utils/fonts.less';
|
|
|
|
@import './less/global/sheet.less';
|
|
@import './less/global/elements.less';
|
|
@import './less/global/tab-navigation.less';
|
|
@import './less/global/tab-actions.less';
|
|
@import './less/global/item-header.less';
|
|
@import './less/global/feature-section.less';
|
|
|
|
#logo {
|
|
content: url(../assets/DaggerheartLogo.webp);
|
|
height: 50px;
|
|
width: 50px;
|
|
position: relative;
|
|
left: 25px;
|
|
}
|
|
|
|
.daggerheart {
|
|
.vertical-separator {
|
|
border-left: 2px solid black;
|
|
height: 56px;
|
|
flex: 0;
|
|
align-self: center;
|
|
}
|
|
|
|
/* Flex */
|
|
.flex-centered {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.flex-col-centered {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-spaced {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.flex-min {
|
|
display: flex;
|
|
flex: 0;
|
|
}
|
|
|
|
/****/
|
|
img[data-edit='img'] {
|
|
min-width: 64px;
|
|
min-height: 64px;
|
|
}
|
|
|
|
.editor {
|
|
height: 200px;
|
|
}
|
|
|
|
button {
|
|
i {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.icon-button {
|
|
&.spaced {
|
|
margin-left: @halfMargin;
|
|
}
|
|
|
|
&.disabled {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
&:hover:not(.disabled) {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
#players {
|
|
h3 {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: nowrap;
|
|
|
|
.players-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.fear-control {
|
|
font-size: 10px;
|
|
|
|
&.disabled {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
&:hover:not(.disabled) {
|
|
cursor: pointer;
|
|
filter: drop-shadow(0 0 3px @mainShadow);
|
|
}
|
|
}
|
|
}
|
|
}
|