mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
20 lines
308 B
CSS
20 lines
308 B
CSS
.jsfh-animated-property {
|
|
animation: eclair;
|
|
animation-iteration-count: 1;
|
|
animation-fill-mode: forwards;
|
|
animation-duration: .75s;
|
|
}
|
|
|
|
@keyframes eclair {
|
|
0%, 100% {
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
transform: scale(1.03);
|
|
}
|
|
}
|
|
|
|
.bg-warning {
|
|
color: #131313;
|
|
}
|