animations is the most important part of this project
This commit is contained in:
@ -8,7 +8,23 @@
|
||||
background-color: #001529;
|
||||
}
|
||||
|
||||
@keyframes cardPopup {
|
||||
0% {
|
||||
transform: translateY(20%);
|
||||
opacity: 0%;
|
||||
}
|
||||
50% {
|
||||
opacity: 20%;
|
||||
transform: translateY(3%);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
animation: 0.5s ease-out 0s 1 cardPopup;
|
||||
background: #001529;
|
||||
margin-top: 0.5rem;
|
||||
margin-right: 1rem;
|
||||
|
||||
Reference in New Issue
Block a user