-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (44 loc) · 1001 Bytes
/
Copy pathstyles.css
File metadata and controls
50 lines (44 loc) · 1001 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
50
#deepseek-pdf-pro-btn {
position: fixed;
top: 20px;
right: 20px;
z-index: 99999;
background: linear-gradient(135deg, #4285f4, #2b6cd4);
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
font-family: 'Helvetica Neue', sans-serif;
font-size: 14px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
align-items: center;
gap: 8px;
}
#deepseek-pdf-pro-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
#deepseek-pdf-pro-btn:active {
transform: translateY(0);
}
.spinner {
display: none;
width: 16px;
height: 16px;
border: 3px solid rgba(255,255,255,0.3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.loading .spinner {
display: block;
}
.loading .btn-text {
display: none;
}