-
Notifications
You must be signed in to change notification settings - Fork 6
/
video-call-ui.html
44 lines (41 loc) · 1.02 KB
/
video-call-ui.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" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link id="favicon" rel="shortcut icon" href="/favicon.ico" />
<title>GoGuardian Call</title>
<style>
html,
body {
height: 100%;
padding: 0px;
margin: 0px;
background: #13293c !important;
}
body {
color: #2b2b2b;
font-size: 14px;
font-family: "Open Sans", Helvetica, "Helvetica Nue", sans-serif;
font-variant: tabular-nums;
line-height: 1.5;
-webkit-font-feature-settings: "tnum", "tnum";
font-feature-settings: "tnum", "tnum";
}
* {
box-sizing: border-box;
}
#root {
height: 100%;
}
</style>
<link href="/video-call-ui.css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script src="/video-call-ui.js"></script>
</body>
</html>