103 lines
2.3 KiB
CSS
103 lines
2.3 KiB
CSS
/* app/static/css/style.css */
|
|
/* Base Styles */
|
|
body {
|
|
background: linear-gradient(to bottom right, #000000, #1a0000);
|
|
}
|
|
|
|
/* Scrollbar Styling */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(220, 38, 38, 0.3);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(220, 38, 38, 0.5);
|
|
}
|
|
|
|
/* Upload Zone Styles */
|
|
.drag-over {
|
|
@apply border-red-500 bg-red-500/5;
|
|
transform: scale(1.01);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
/* Cards Hover Effect */
|
|
.analysis-card {
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.analysis-card:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Monospace Font for Technical Data */
|
|
.font-mono {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes pulse-red {
|
|
0%, 100% {
|
|
background-color: rgba(239, 68, 68, 0.1);
|
|
}
|
|
50% {
|
|
background-color: rgba(239, 68, 68, 0.2);
|
|
}
|
|
}
|
|
|
|
.animate-pulse-red {
|
|
animation: pulse-red 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
}
|
|
|
|
/* Loading Spinner */
|
|
.loading-spinner {
|
|
border: 3px solid rgba(239, 68, 68, 0.1);
|
|
border-top-color: rgb(239, 68, 68);
|
|
border-radius: 50%;
|
|
width: 24px;
|
|
height: 24px;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* Form Controls Dark Theme Override */
|
|
select,
|
|
input {
|
|
background-color: rgb(17 24 39 / 0.3) !important;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
/* Custom Select Dropdown Arrow */
|
|
select {
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
|
background-position: right 0.5rem center;
|
|
background-repeat: no-repeat;
|
|
background-size: 1.5em 1.5em;
|
|
padding-right: 2.5rem;
|
|
}
|
|
|
|
/* Autofill Style Override */
|
|
input:-webkit-autofill,
|
|
input:-webkit-autofill:hover,
|
|
input:-webkit-autofill:focus,
|
|
input:-webkit-autofill:active {
|
|
-webkit-box-shadow: 0 0 0 30px rgb(17 24 39 / 0.3) inset !important;
|
|
-webkit-text-fill-color: rgb(209 213 219) !important;
|
|
} |