-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
49 lines (43 loc) · 953 Bytes
/
Copy pathcontent.css
File metadata and controls
49 lines (43 loc) · 953 Bytes
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
/* CVflash Content Script Styles */
#cvflash-toast {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 2147483647;
display: flex;
align-items: center;
gap: 8px;
padding: 12px 18px;
border-radius: 10px;
font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
font-size: 14px;
font-weight: 500;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
opacity: 0;
transform: translateY(20px);
transition: opacity 0.25s ease, transform 0.25s ease;
pointer-events: none;
max-width: 320px;
}
.cvflash-toast--info {
background: #1e1e2e;
color: #cdd6f4;
border: 1px solid #313244;
}
.cvflash-toast--success {
background: #1e2e1e;
color: #a6e3a1;
border: 1px solid #2a3e2a;
}
.cvflash-toast--error {
background: #2e1e1e;
color: #f38ba8;
border: 1px solid #3e2a2a;
}
.cvflash-toast__icon {
font-size: 16px;
flex-shrink: 0;
}
.cvflash-toast__text {
line-height: 1.4;
}