-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPathAI-Agent.css
More file actions
62 lines (52 loc) · 1.73 KB
/
PathAI-Agent.css
File metadata and controls
62 lines (52 loc) · 1.73 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
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
body {
background-color: #0f172a;
font-family: 'Inter', sans-serif;
color: white;
scroll-behavior: smooth;
}
.glass-card {
background: rgba(30, 41, 59, 0.7);
backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-text {
background: linear-gradient(135deg, #a5b4fc, #d8b4fe);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.progress-container {
height: 12px;
background: #1e293b;
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.05);
}
#progressBar {
height: 100%;
width: 0%;
background: linear-gradient(90deg, #6366f1, #a855f7);
transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#roadmapDisplay a {
color: #818cf8;
text-decoration: underline;
font-weight: bold;
}
.day-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.day-card:hover {
border-color: rgba(168, 85, 247, 0.4);
transform: translateY(-2px);
}
.custom-scrollbar::-webkit-scrollbar {
width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 10px;
}