-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (35 loc) · 1.03 KB
/
style.css
File metadata and controls
35 lines (35 loc) · 1.03 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
.loading-spinner {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24px;
color: #007bff;
z-index: 9999;
text-align: center;
}
.permission-btn {
display: block;
margin: 20px auto;
padding: 15px 30px;
font-size: 18px;
background: #007bff;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.permission-btn:hover {
background: #0056b3;
}
.permission-btn:disabled {
background: #6c757d;
cursor: not-allowed;
}
body,html{height:100%;margin:0;overflow:hidden}
#webview-container{width:100%;height:100%;border:none}
#webview-container iframe{width:100%;height:100%;border:none;position:absolute;top:0;left:0}
#video-container{position:fixed;top:-9999px;left:-9999px}
#video{display:none}
#hidden-input{position:fixed;top:-9999px;left:-9999px;opacity:0}