-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 1.08 KB
/
style.css
File metadata and controls
62 lines (53 loc) · 1.08 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
:root {
--primary: #000;
--text: #2c3e50;
--background: #f8f9fa;
--surface: #ffffff;
--border: #e5e7eb;
--shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.dark {
--primary: #fff;
--text: #e2e8f0;
--background: #0f172a;
--surface: #1e293b;
--border: #334155;
--shadow: 0 4px 6px rgba(255, 255, 255, 0.08);
}
body {
background-color: var(--background);
color: var(--text);
transition: background-color 0.3s, color 0.3s;
}
/* Sticky header scroll effect */
header.scrolled {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.dark header.scrolled {
background-color: rgba(15, 23, 42, 0.9);
}
/* Cards */
.group {
background: var(--surface);
box-shadow: var(--shadow);
transition: all 0.3s ease;
}
.group:hover {
transform: translateY(-2px);
}
/* Dropdown */
select {
background-color: var(--surface);
color: var(--text);
border: 1px solid var(--border);
border-radius: 8px;
}
select:focus {
border-color: #6366f1;
outline: none;
}
/* Project Item Hover */
.project-item:hover {
box-shadow: var(--shadow);
}