chg: [layout:loging] Improved layout

pull/72/head
Sami Mokaddem 2021-10-05 12:17:19 +02:00
parent 552566c286
commit 8542d7ceb5
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 17 additions and 0 deletions

View File

@ -32,4 +32,21 @@ body {
transform-origin: center;
left: 42%;
top: 30%;
}
.cerebrate-background-logo:hover {
-webkit-animation:spin 6s linear infinite;
animation:spin 6s linear infinite;
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
@-webkit-keyframes spin {
100% { -webkit-transform: rotate(460deg); }
}
@keyframes spin {
100% {
-webkit-transform: rotate(460deg);
transform:rotate(460deg);
}
}