-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
executable file
·44 lines (44 loc) · 958 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>streamseek</title>
<style>
html, body {
background: #fdfffc none;
}
body {
padding-bottom: 60px;
}
input[type="text"]:focus,
input[type="password"]:focus
.btn:focus {
box-shadow: none;
}
input[type="text"]:focus,
input[type="password"]:focus {
box-shadow: none;
background-color: rgba(128, 189, 255, .2);
color: darkblue
}
.overlay-spinner {
position: fixed;
top:0;
left:0;
background: rgba(15,15,15, .4) none;
color: cyan;
z-index: 9999;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center
}
</style>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>