mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 02:19:54 +02:00
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);
|
|
}
|
|
}
|
|
} |