Skip to content

Commit

Permalink
fix stuff with threepeater
Browse files Browse the repository at this point in the history
Signed-off-by: ClaytonTDM <claytontdm@gmail.com>
  • Loading branch information
ClaytonTDM committed Oct 12, 2024
1 parent 7b464e7 commit c7c32d6
Show file tree
Hide file tree
Showing 2 changed files with 650 additions and 707 deletions.
17 changes: 17 additions & 0 deletions game/Custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -379,3 +379,20 @@ td {
transform: translate(0px, 0px);
}
}

@keyframes threepeaterDown { /* threepeaterDown 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards */
0% {
transform: translateY(0px);
}
100% {
transform: translateY(100px);
}
}
@keyframes threepeaterUp { /* threepeaterUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards */
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-100px);
}
}
Loading

0 comments on commit c7c32d6

Please sign in to comment.