39074-vm/assets/css/custom.css
Flatlogic Bot b12f985e57 1
2026-03-10 05:51:31 +00:00

82 lines
1.9 KiB
CSS

:root {
--primary: #2c4bd1;
--primary-dark: #1029a0;
--accent: #18d1b3;
--dark-bg: #0b2083;
--card-bg: rgba(11, 32, 131, 0.40);
--text-main: #f3f9ff;
--text-muted: #bbc8fb;
--gradient: linear-gradient(135deg, #2c4bd1 0%, #1029a0 100%);
--bg-gradient: linear-gradient(-45deg, #0b2083, #1029a0, #2c4bd1);
}
body {
background: var(--bg-gradient);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
color: var(--text-main);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
margin: 0;
min-height: 100vh;
}
.main-wrapper {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
box-sizing: border-box;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Card Styling (AppWizzy style) */
.chat-container, .admin-container {
background: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
color: var(--text-main);
}
.chat-header {
padding: 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
font-weight: 600;
}
/* Buttons */
button {
background: var(--gradient);
border: none;
padding: 0.75rem 1.5rem;
border-radius: 12px;
color: white;
cursor: pointer;
font-weight: 600;
transition: transform 0.2s;
}
button:hover {
transform: translateY(-2px);
}
/* Inputs */
input, .form-control {
background: rgba(221, 226, 253, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 0.75rem 1rem;
color: white;
}
input:focus {
border-color: var(--primary);
outline: none;
}