-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapture.css
More file actions
75 lines (66 loc) · 1.67 KB
/
Copy pathcapture.css
File metadata and controls
75 lines (66 loc) · 1.67 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
/* TabMaxxing - Full Page Capture Overlay Styles */
.tabmax-capture-overlay {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
background: rgba(14, 14, 20, 0.92);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 30px;
padding: 10px 20px;
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
font-size: 13px;
font-weight: 600;
color: #f3f3f8;
z-index: 2147483647;
display: flex;
align-items: center;
gap: 12px;
user-select: none;
pointer-events: auto;
animation: tabmaxFadeIn 0.2s ease-out;
}
.tabmax-capture-spinner {
width: 18px;
height: 18px;
border: 2px solid rgba(255, 255, 255, 0.2);
border-top-color: #3b82f6;
border-radius: 50%;
animation: tabmaxSpin 0.7s linear infinite;
}
.tabmax-capture-bar-wrap {
width: 110px;
height: 6px;
background: rgba(255, 255, 255, 0.12);
border-radius: 4px;
overflow: hidden;
}
.tabmax-capture-bar-fill {
height: 100%;
width: 0%;
background: linear-gradient(90deg, #3b82f6, #a855f7);
border-radius: 4px;
transition: width 0.15s ease;
}
.tabmax-hide-sticky {
opacity: 0 !important;
visibility: hidden !important;
}
.tabmax-hide-scrollbars {
scrollbar-width: none !important;
}
.tabmax-hide-scrollbars::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
}
@keyframes tabmaxSpin {
to { transform: rotate(360deg); }
}
@keyframes tabmaxFadeIn {
from { opacity: 0; transform: translate(-50%, -10px); }
to { opacity: 1; transform: translate(-50%, 0); }
}