This commit is contained in:
Davron Chetin
2025-10-09 10:14:01 +05:00
parent 9c9d5dbc2c
commit 18890c0049
4 changed files with 176 additions and 42 deletions

View File

@@ -29,7 +29,7 @@ body {
}
* {
transition: 0.1s ease-in-out all;
transition: 0.6s ease-in-out all;
font-family: "Roboto", sans-serif;
}
@@ -47,3 +47,16 @@ body {
.clip-button {
clip-path: polygon(16% 0, 100% 0, 84% 100%, 0% 100%);
}
/* footer ekxkavator icon animation */
@keyframes icon_animatsion_tool {
from{
box-shadow:none;
}to{
box-shadow: 0px 0px 15px 5px var(--secondary);
}
}
.icon_animation{
animation: icon_animatsion_tool 2s infinite alternate-reverse ;
}