daggerheart/styles/less/global/global.less
2026-01-06 14:04:48 -05:00

73 lines
1.6 KiB
Text

.drag-area {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 100%;
height: 40px;
border: 1px dashed light-dark(@dark-blue-50, @beige-50);
border-radius: 3px;
color: light-dark(@dark-blue-50, @beige-50);
font-family: @font-body;
&.summon-actor-drop {
height: fit-content;
min-height: inherit;
display: flex;
justify-content: center;
.actors-list.summon-entry .actor-summon-item .actor-summon-line {
display: flex;
justify-content: flex-end;
align-items: center;
.image{
max-width: 10%;
}
.h4{
width: --webkit-fill-available;
}
.controls.effect-control{
padding:3px;
}
}
}
}
.daggerheart.dh-style {
.hint {
flex: 0 0 100%;
margin: 0;
color: var(--color-form-hint);
}
.form-group:hover {
.hint {
color: var(--color-form-hint-hover);
}
}
.daggerheart-loader {
position: relative;
overflow: hidden !important;
div {
opacity: 0.5;
}
&:before {
font-family: 'Font Awesome 6 Pro';
content: '\f110';
position: absolute;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
animation: spinner 1.5s linear infinite;
}
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
}