- Change main brand color from #e6a335 to #ffc407 (new yellow) - Update hover/darker variant from #d1932b to #e6b006 - Update all RGBA color values to match new yellow (255, 196, 7) - Apply color changes across all components: - Navigation bar and branding - Buttons and interactive elements - Form inputs and focus states - Charts and data visualization - Status indicators and badges - Admin dashboard styling - Chat interface elements - Login and authentication pages Total updates: 40+ color references updated across 6 files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
141 lines
No EOL
2.3 KiB
CSS
141 lines
No EOL
2.3 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #f8fafc;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
border: 1px solid #e5e7eb;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-header {
|
|
padding: 1.5rem;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
background: #f9fafb;
|
|
}
|
|
|
|
.card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #ffc407;
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(255, 196, 7, 0.4);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: #6b7280;
|
|
color: white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: #4b5563;
|
|
}
|
|
|
|
.btn-outline {
|
|
background: transparent;
|
|
color: #ffc407;
|
|
border: 2px solid #ffc407;
|
|
}
|
|
|
|
.btn-outline:hover {
|
|
background: #ffc407;
|
|
color: white;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.grid-2 {
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
}
|
|
|
|
.grid-3 {
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.mb-4 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mb-6 {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.mb-8 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
color: #6b7280;
|
|
}
|
|
|
|
.error {
|
|
background: #fef2f2;
|
|
color: #dc2626;
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
border-left: 4px solid #dc2626;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.success {
|
|
background: #f0fdf4;
|
|
color: #16a34a;
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
border-left: 4px solid #16a34a;
|
|
margin: 1rem 0;
|
|
} |