mirror of
https://github.com/MrEidam/PetPet.git
synced 2026-04-17 15:43:31 +00:00
2048 animations
This commit is contained in:
@@ -35,18 +35,37 @@ hr{
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.tile{
|
||||
.tile {
|
||||
position: relative;
|
||||
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
border: 5px solid #bbada0;
|
||||
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out; /* Add smooth transitions */
|
||||
}
|
||||
|
||||
.tile.new-tile {
|
||||
animation: pop 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes pop {
|
||||
0% {
|
||||
transform: scale(0.5);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.arrowBack{
|
||||
height: 90px;
|
||||
width: 372px;
|
||||
|
||||
Reference in New Issue
Block a user