website/static/src/scss/_search.scss

30 lines
425 B
SCSS
Raw Normal View History

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%;
}
#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;
}
#result-count {
margin-bottom: 1rem;
}
2022-08-01 22:23:06 +01:00
}