-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
121 lines (108 loc) · 2.35 KB
/
content.css
File metadata and controls
121 lines (108 loc) · 2.35 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#transcript-downloader-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(18, 18, 18, 0.85);
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Roboto', sans-serif;
z-index: 10000;
}
.overlay-content {
text-align: center;
max-width: 90%;
width: 450px;
background-color: #1e1e1e;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.overlay-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 12px;
word-break: break-word;
color: #fff;
}
.overlay-message {
font-size: 14px;
margin-bottom: 14px;
color: rgba(255, 255, 255, 0.9);
}
.overlay-progress-container {
width: 100%;
height: 4px;
background-color: rgba(255, 255, 255, 0.15);
border-radius: 2px;
margin: 12px 0;
overflow: hidden;
}
.overlay-progress-bar {
height: 100%;
background-color: #BB86FC;
width: 0%;
transition: width 0.3s ease;
}
.overlay-status {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
margin-top: 6px;
}
.overlay-button-container {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 16px;
}
.overlay-button {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #BB86FC;
color: #000;
border: none;
border-radius: 5px;
padding: 8px 18px;
font-family: 'Roboto', sans-serif;
font-size: 14px;
font-weight: 500;
cursor: pointer;
text-transform: uppercase;
transition: all 0.2s ease;
letter-spacing: 0.5px;
}
.overlay-button:hover {
background-color: #c79afc;
transform: scale(1.03);
box-shadow: 0 0 8px rgba(187, 134, 252, 0.4);
}
.overlay-button:active {
transform: scale(0.98);
}
.overlay-button.secondary {
background-color: transparent;
color: #BB86FC;
border: 1px solid #BB86FC;
}
.overlay-button.secondary:hover {
background-color: rgba(187, 134, 252, 0.15);
box-shadow: 0 0 8px rgba(187, 134, 252, 0.3);
}
.debug-info {
position: fixed;
bottom: 10px;
left: 10px;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 5px;
font-size: 12px;
z-index: 10001;
max-width: 300px;
max-height: 100px;
overflow: auto;
}