-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinject.css
More file actions
61 lines (55 loc) · 1.19 KB
/
Copy pathinject.css
File metadata and controls
61 lines (55 loc) · 1.19 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
.gf-auto-fill-btn {
display: block;
width: 100%;
max-width: 600px;
margin: 12px auto;
padding: 14px 20px;
border-radius: 10px;
border: 1px solid rgba(59, 130, 246, 0.5);
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.gf-auto-fill-btn:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.gf-auto-fill-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.gf-toast {
position: fixed;
bottom: 20px;
right: 20px;
padding: 12px 16px;
border-radius: 10px;
font-size: 13px;
font-weight: 500;
z-index: 10000;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
animation: slideIn 0.3s ease;
}
.gf-toast--success {
background: #10b981;
color: white;
}
.gf-toast--error {
background: #ef4444;
color: white;
}
@keyframes slideIn {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}