-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
113 lines (98 loc) · 2.81 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#7820E2" />
<meta
name="description"
content="A multi-participant video call platform for calling across the world for free with screen sharing!"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<meta name="title" content="Meeting with Trio Calls" />
<meta
name="description"
content="A multi-participant video call platform for calling across the world for free with screen sharing!"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://trio-calls.vercel.app/" />
<meta property="og:title" content="Meeting with Trio Calls" />
<meta
property="og:description"
content="A multi-participant video call platform for calling across the world for free with screen sharing!"
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>Trio Calls</title>
<style>
body {
margin: 0;
}
/* width */
::-webkit-scrollbar {
width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(189, 189, 189);
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgb(144, 143, 143);
}
.loadingRoot {
display: flex;
height: 100vh;
flex-direction: column;
justify-content: center;
align-items: center;
}
.loader {
margin-top: 4em;
position: relative;
width: 100px;
height: 3px;
background-color: lightgray;
}
.loader::after {
content: "";
position: absolute;
background-color: #6264a7;
height: 100%;
width: 20%;
animation: loading 1s ease-in-out infinite alternate;
}
@keyframes loading {
0% {
left: 0%;
}
50% {
width: 40%;
}
100% {
left: 80%;
}
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div class="loadingRoot">
<img src="%PUBLIC_URL%/icon-192x193.png" width="120" height="120" />
<div class="loader"></div>
</div>
</div>
</body>
</html>