-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (60 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (60 loc) · 1.36 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
63
64
65
66
67
68
69
70
71
72
73
74
#usageLensBar {
margin-top: 10px;
padding: 12px;
border-radius: 14px;
background-color: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
display: flex;
flex-direction: column;
gap: 12px;
color: #ffffff;
font-family: Inter, Arial, sans-serif;
transition: transform 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
transform: translateY(0);
opacity: 1;
}
/* typing start -> bars niche shift */
#usageLensBar.typing {
transform: translateY(22px);
opacity: 0.96;
}
/* user typing more -> aur niche */
#usageLensBar.typing-active {
transform: translateY(34px);
}
.ul-row {
display: flex;
flex-direction: column;
gap: 6px;
}
.ul-label {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
font-weight: 600;
opacity: 0.95;
}
.ul-track {
width: 100%;
height: 8px;
border-radius: 999px;
background-color: rgba(255, 255, 255, 0.08);
overflow: hidden;
}
.ul-fill {
height: 100%;
width: 0%;
border-radius: 999px;
transition: width 0.45s ease;
}
.ul-fill.daily {
background: linear-gradient(90deg, #22c55e, #16a34a);
box-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
}
.ul-fill.monthly {
background: linear-gradient(90deg, #8b5cf6, #7c3aed);
box-shadow: 0 0 10px rgba(139, 92, 246, 0.35);
}