Thug life

This commit is contained in:
krateng 2023-10-24 23:13:03 +02:00
parent f613abaa20
commit 7aa5ad5dff

View File

@ -266,7 +266,19 @@ div#footer {
}
#notch img:hover {
transform: scale(1.1);
/*transform: scale(1.1);*/
animation-name: spin;
animation-duration: 4000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
} to {
transform: rotate(360deg);
}
}