Skip to content

Commit

Permalink
Make logo rotate
Browse files Browse the repository at this point in the history
  • Loading branch information
kordwarshuis committed Jul 30, 2024
1 parent 7317264 commit 520db89
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions src/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ table th {

.search-heading {
display: inline-block;
background-image: url("logo-keri-symbol.png");
/* background-image: url("logo-keri-symbol.png"); */
background-position: left top;
background-repeat: no-repeat;
background-color: transparent;
Expand Down Expand Up @@ -982,4 +982,29 @@ footer {
/* visibility: visible; */
opacity: 1 !important;
transition: all 0.3s ease-in-out;
}
}


/*
Rotating Image
*/

.hero__image {
max-width: 2em !important;
margin-right: 0.5em;
animation: rotation 12s infinite linear;
}

@keyframes rotation {
from {
transform: rotate(0deg);
}

to {
transform: rotate(359deg);
}
}

/*
End Rotating Image
*/

0 comments on commit 520db89

Please sign in to comment.