-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
126 lines (112 loc) · 1.59 KB
/
index.css
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
122
123
124
125
126
*/ *,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
input,
button,
textarea,
select {
font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
#root,
#__next {
isolation: isolate;
}
html,
body {
height: 100%;
width: 100%;
}
body {
color: darkslategrey;
background: antiquewhite;
margin: 0;
padding: 0;
font-family: "Helvetica", "Arial", sans-serif;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
.call-btn {
background-color: darkslategrey;
color: antiquewhite;
font-size: 1rem;
cursor: pointer;
width: 100%;
height: 100px;
border-radius: 8px;
font-size: 2rem;
}
.hangup-btn {
background-color: darkred;
color: antiquewhite;
font-size: 1rem;
cursor: pointer;
width: 100%;
height: 100px;
border-radius: 8px;
font-size: 2rem;
}
.modal {
padding: 5rem;
background-color: whitesmoke;
border-radius: 2rem;
width: 40rem;
height: 20rem;
}
.inner-modal {
text-align: center;
}
.modal label {
font-size: 1.5rem;
}
.modal input {
margin: 1rem 7rem 3rem;
display: block;
padding: 1rem;
border-radius: 3rem;
box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.19);
border: none;
width: 50%;
}
.connect-btn {
background-color: #0c1d1d;
color: whitesmoke;
font-size: 1.5rem;
}
#wrapper {
position: relative;
width: 100vw;
height: 100vh;
}
#cesiumContainer {
height: 100%;
width: 100%;
}
#streamContainer {
position: absolute;
top: 0;
right: 0;
background-color: rgba(250, 235, 215, 0.662);
padding: 1rem;
}