-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (70 loc) · 1.82 KB
/
Copy pathstyles.css
File metadata and controls
78 lines (70 loc) · 1.82 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
75
76
77
78
.threads-save-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
min-width: 40px;
padding: 8px 12px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.22);
background: rgba(255, 255, 255, 0.94);
color: #0f172a;
cursor: pointer;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-size: 14px;
font-weight: 600;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
}
.threads-save-btn:hover {
background: #fff;
border-color: rgba(37, 99, 235, 0.24);
color: #1d4ed8;
transform: translateY(-1px);
box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.threads-save-btn svg {
width: 18px;
height: 18px;
fill: currentColor;
}
.threads-save-btn.saved {
background: rgba(37, 99, 235, 0.1);
color: #1d4ed8;
border-color: rgba(37, 99, 235, 0.18);
}
.threads-save-btn.saved svg {
fill: currentColor;
}
.threads-save-notification {
position: fixed;
top: 20px;
right: 20px;
background: rgba(255, 255, 255, 0.96);
color: #0f172a;
padding: 12px 18px;
border-radius: 14px;
z-index: 10000;
animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
border: 1px solid rgba(37, 99, 235, 0.18);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
}
@keyframes slideIn {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.empty-help {
font-size: 12px;
margin-top: 8px;
color: #94a3b8;
}