Files
thrillwiki_django_no_react/parks/static/parks/css/search.css

32 lines
563 B
CSS

/* Loading indicator */
.htmx-indicator {
opacity: 0;
}
.htmx-request .htmx-indicator {
opacity: 1;
}
/* Search results spacing */
#search-results {
margin-top: 0.5rem;
}
/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
#search-results .bg-white {
background-color: #1f2937;
}
#search-results .text-gray-900 {
color: #f3f4f6;
}
#search-results .text-gray-500 {
color: #9ca3af;
}
#search-results .hover\:bg-gray-50:hover {
background-color: #374151;
}
}