37051-vm/static/css/custom.css
Flatlogic Bot bfe98de2d1 faded
2025-12-18 23:08:12 +00:00

81 lines
1.6 KiB
CSS

body {
background: linear-gradient(to right, #0F2027, #203A43, #2C5364);
font-family: 'Inter', sans-serif;
color: #fff;
}
.font-poppins {
font-family: 'Poppins', sans-serif;
}
.font-inter {
font-family: 'Inter', sans-serif;
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
/* Redefine form styles from forms.py to avoid specificity issues */
.glass-card form .w-full.bg-gray-800 {
background-color: rgba(31, 41, 55, 0.5) !important;
border-color: rgba(55, 65, 81, 0.5) !important;
}
/* Intent Badge Styles */
.intent-badge {
width: 10px;
height: 10px;
border-radius: 50%;
margin-left: 8px;
display: inline-block;
}
.intent-neutral {
background-color: #9CA3AF; /* gray-400 */
}
.intent-safe {
background-color: #10B981; /* green-500 */
}
.intent-caution {
background-color: #F59E0B; /* yellow-500 */
}
.intent-warning {
background-color: #EF4444; /* red-500 */
}
/* Image Generator Styles */
.btn-primary {
background-color: #4A90E2;
border-color: #4A90E2;
transition: background-color 0.3s ease;
}
.btn-primary:hover {
background-color: #357ABD;
border-color: #357ABD;
}
.form-control {
background-color: rgba(255, 255, 255, 0.2);
border: none;
color: #fff;
}
.form-control::placeholder {
color: rgba(255, 255, 255, 0.7);
}
.card {
background-color: rgba(0,0,0,0.2);
border: none;
}