mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 18:39:55 +02:00
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
* Experimented with hope/fear pulsed text and the DhCompatible logo * Improved handling so that modules changing the game pause work normally * Moved pause-pulse keyframes to game-pause.less
23 lines
No EOL
470 B
Text
23 lines
No EOL
470 B
Text
@import '../../utils/mixin.less';
|
|
|
|
#pause.dh-style {
|
|
figcaption {
|
|
position: absolute;
|
|
margin-top: 24px;
|
|
animation: pause-pulse 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pause-pulse {
|
|
0% {
|
|
filter: drop-shadow(0 0 5px @secondary-blue);
|
|
}
|
|
|
|
50% {
|
|
filter: drop-shadow(0 0 5px @golden);
|
|
}
|
|
|
|
100% {
|
|
filter: drop-shadow(0 0 5px @secondary-blue);
|
|
}
|
|
}
|
|
} |