-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.css
46 lines (40 loc) · 1 KB
/
theme.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
:root {
/* Color Palette */
--primary-color: #2e7d32;
--secondary-color: #388e3c;
--accent-color: #6abf69;
--success-color: #4caf50;
--info-color: #2196f3;
--warning-color: #ff9800;
--danger-color: #f44336;
--light-text: #757575;
--dark-text: #212121;
/* Spacing */
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
/* Shadows */
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
--shadow-md: 0 4px 6px rgba(0,0,0,0.16);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}
/* Global Components */
.card {
background: white;
border-radius: 12px;
border: none;
box-shadow: var(--shadow-sm);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-primary {
background: var(--primary-color);
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
}
/* Add more global styles... */