- Create SQLite database schema with all tables - Implement REST API endpoints for properties, leads, testimonials, FAQ, services - Add seed data with sample properties, testimonials, FAQ - Create Docker configuration for deployment - Add i18n system for translations - Add API client for frontend integration - Create Technical Documentation (TZ.md) - Add detailed README with deployment instructions 🚀 Project is now fully functional: - API: http://localhost:8080/api/* - Properties CRUD with filtering - Lead management - Settings, Testimonials, FAQ, Services APIs - SQLite database with seed data
58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
:root {
|
|
/* Primary Colors */
|
|
--primary: #1a5f4a;
|
|
--primary-light: #2d8f6f;
|
|
--primary-dark: #0d4535;
|
|
|
|
/* Secondary Colors */
|
|
--secondary: #d4a853;
|
|
--secondary-light: #e6c57a;
|
|
|
|
/* Accent */
|
|
--accent: #e85d04;
|
|
|
|
/* Neutral */
|
|
--dark: #1a1a2e;
|
|
--light: #f8f9fa;
|
|
--gray: #6c757d;
|
|
|
|
/* Semantic Colors */
|
|
--success: #28a745;
|
|
--warning: #f59e0b;
|
|
--danger: #ef4444;
|
|
--info: #3b82f6;
|
|
|
|
/* Shadows */
|
|
--shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
|
|
--shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
|
|
|
|
/* Typography */
|
|
--font-primary: 'Open Sans', sans-serif;
|
|
--font-heading: 'Montserrat', sans-serif;
|
|
|
|
/* Spacing */
|
|
--spacing-xs: 0.25rem;
|
|
--spacing-sm: 0.5rem;
|
|
--spacing-md: 1rem;
|
|
--spacing-lg: 1.5rem;
|
|
--spacing-xl: 2rem;
|
|
--spacing-xxl: 3rem;
|
|
|
|
/* Border Radius */
|
|
--radius-sm: 8px;
|
|
--radius-md: 12px;
|
|
--radius-lg: 20px;
|
|
--radius-full: 50px;
|
|
|
|
/* Transitions */
|
|
--transition-fast: 0.15s ease;
|
|
--transition-normal: 0.3s ease;
|
|
--transition-slow: 0.5s ease;
|
|
}
|
|
|
|
/* Dark Theme */
|
|
[data-theme="dark"] {
|
|
--light: #1a1a2e;
|
|
--dark: #f8f9fa;
|
|
--gray: #94a3b8;
|
|
} |