mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
126 lines
2.4 KiB
Text
Executable file
126 lines
2.4 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 '../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);
|
|
}
|
|
}
|
|
}
|
|
}
|