Add a basic UI

This commit is contained in:
2025-01-25 23:54:03 -06:00
parent 668e1bfb0d
commit cb15adc9a6
9 changed files with 306 additions and 2 deletions

34
app/static/css/main.css Normal file
View File

@@ -0,0 +1,34 @@
/* Custom styles can be added here */
.active-nav-link {
border-color: #60a5fa;
color: #60a5fa;
}
/* Add smooth transitions for hover effects */
.hover\:border-primary {
transition: border-color 0.2s ease-in-out;
}
/* Custom scrollbar styles */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #60a5fa;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #3b82f6;
}
/* Dark mode input styles */
input[type="date"]::-webkit-calendar-picker-indicator {
filter: invert(1);
opacity: 0.5;
}