Skip to content

Commit

Permalink
deploy: 520db89
Browse files Browse the repository at this point in the history
  • Loading branch information
kordwarshuis committed Jul 30, 2024
1 parent 021a7aa commit 688f311
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
29 changes: 27 additions & 2 deletions 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
*/
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
</div>

<div class="hero2 p-2">
<h1 class="search-heading text-center fs-2">KERISSE</h1>
<h1 class="search-heading text-center fs-2"><img alt="" class="hero__image"
src="logo-keri-symbol.png" />KERISSE</h1>
<p class="text-center">KERI Suite Search Engine</p>

<div id="search-box" class="mt-3 mb-2"></div>
Expand Down

0 comments on commit 688f311

Please sign in to comment.