2022-08-01 22:23:06 +01:00
|
|
|
@keyframes search-loading {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
2022-08-03 21:22:11 +01:00
|
|
|
|
2022-08-01 22:23:06 +01:00
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2022-08-02 21:11:35 +01:00
|
|
|
|
2022-08-01 22:23:06 +01:00
|
|
|
body.page-searchpage {
|
|
|
|
.search-controls {
|
|
|
|
margin: 2rem auto;
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
|
2022-08-27 20:24:27 +01:00
|
|
|
#search-indicator.htmx-request {
|
2022-08-01 22:23:06 +01:00
|
|
|
animation: search-loading 1.5s linear infinite;
|
|
|
|
}
|
2022-08-02 21:11:35 +01:00
|
|
|
|
|
|
|
#search-results > p {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-08-18 14:42:01 +01:00
|
|
|
|
|
|
|
#result-count {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2022-08-01 22:23:06 +01:00
|
|
|
}
|