move some pigs around and add a glowing neon friend

This commit is contained in:
elisejakob
2024-05-23 00:44:07 +02:00
parent c3021e0b8b
commit c640104183
17 changed files with 588 additions and 31 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,27 @@
.neonChillPig {
position: relative;
width: 20rem;
height: 8rem;
.static,
.animate {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.animate {
animation: glow 1s infinite alternate;
}
}
@keyframes glow {
from {
opacity: 0;
}
to {
opacity: 1;
}
}