Style: nem lembro mais

This commit is contained in:
2025-01-28 16:51:15 -03:00
parent 7ccc505299
commit c8119609ea
4 changed files with 31 additions and 2 deletions

View File

@@ -4,6 +4,20 @@
--main-gradient: linear-gradient(145deg, #1E2A3B, #2C3E50);
}
@keyframes jump {
0% {
transform: scale(0.0);
/* transform: translate(#000000); */
}
70% {
transform: scale(1);
}
100% {
transform: scale(1);
}
}
body {
margin: 70px 0px 0px 0px;
@@ -187,6 +201,8 @@ input, textarea, select {
padding: 12px 16px;
text-decoration: none;
display: block;
animation: jump 0.7s;
}
@@ -195,6 +211,8 @@ input, textarea, select {
background-color: #7a7a7a;
border-radius: 5px;
display: block;
/* animation: jump 0.7s; */
}
@@ -209,6 +227,8 @@ input, textarea, select {
.dropdown:hover .dropdown-content {
display: block;
animation: jump 0.7s;
}