style changes

This commit is contained in:
sdarbinyan
2026-02-14 02:34:11 +04:00
parent 751ad48489
commit 4238d59fc6
20 changed files with 1448 additions and 1032 deletions

View File

@@ -14,39 +14,40 @@
/* Default CSS Variables - will be overridden by theme files */
:root {
--primary-color: #667eea;
--primary-hover: #5568d3;
--secondary-color: #764ba2;
--secondary-hover: #653a8e;
--accent-color: #f093fb;
--accent-hover: #e07ff0;
--primary-color: #497671;
--primary-hover: #3d635f;
--secondary-color: #a1b4b5;
--secondary-hover: #8da3a4;
--accent-color: #a7ceca;
--accent-hover: #91b9b5;
--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-primary: linear-gradient(360deg, #497671 0%, #a7ceca 100%);
--gradient-secondary: linear-gradient(135deg, #a1b4b5 0%, #677b78 100%);
--gradient-hero: linear-gradient(360deg, #497671 0%, #a7ceca 100%);
--text-primary: #333333;
--text-secondary: #666666;
--text-light: #999999;
--text-primary: #1e3c38;
--text-secondary: #667a77;
--text-light: #828e8d;
--bg-primary: #ffffff;
--bg-secondary: #f6f7fb;
--bg-tertiary: #e9ecf5;
--bg-secondary: #f5f5f5;
--bg-tertiary: #f0f0f0;
--success-color: #10b981;
--warning-color: #f59e0b;
--error-color: #ef4444;
--info-color: #3b82f6;
--border-color: #e5e7eb;
--border-color: #d3dad9;
--border-dark: #677b78;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 12px 40px rgba(102, 126, 234, 0.25);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 12px 32px rgba(73, 118, 113, 0.2);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-xl: 20px;
--radius-lg: 13px;
--radius-xl: 22px;
}
* {
@@ -66,7 +67,7 @@ body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: var(--text-primary);
background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
background: #f5f5f5;
min-height: 100vh;
overflow-x: hidden;
}