-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (113 loc) · 1.82 KB
/
styles.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
body {
margin: 0;
padding: 0;
font-family: Montserrat;
font-style: normal;
font-weight: normal;
}
#labelText {
position: absolute;
z-index: 10;
}
#container {
background-color: #099dfd;
}
#webcam {
border-radius: 200px;
}
.flexContainer {
display: flex;
flex-direction: row;
}
.left-pane {
padding-left: 20px;
padding-right: 20px;
width: 40vw;
height: auto;
margin-bottom: 0px;
height: 100vh;
background-color: #ffffff;
box-shadow: 0px 4px 52px rgba(0, 0, 0, 0.13);
}
.logoSmall {
width: 100%;
padding-top: 25px;
padding-bottom: 50px;
}
.logoElement {
max-width: 100%;
max-height: 100%;
}
.loginContainer {
margin-top: 20vh;
}
.headingText {
font-size: 1.75rem;
margin-bottom: 20px;
}
input:first-of-type {
margin-top: 40px;
}
input {
margin-top: 20px;
border-radius: 5px;
width: 93%;
padding: 5px;
border: 1px solid #099dfd;
font-size: 1.25rem;
}
.right-pane {
width: auto;
flex: 1;
text-align: center;
}
.imageContainer {
width: 100%;
}
.illustrationContainer {
width: 75%;
margin: auto;
padding-bottom: 30px;
}
.illustrationElement {
max-width: 100%;
max-height: 100%;
}
.submitButton {
background: #099dfd;
font-size: 1.1rem;
margin-top: 20px;
color: #fff;
border: none;
border-radius: 5px;
padding: 8px;
padding-left: 20px;
padding-right: 20px;
}
.right-container {
display: flex;
width: 1600px;
margin-left: auto;
margin-right: auto;
height: 100%;
flex-direction: row;
align-items: center;
justify-content: center;
}
#SelfStream {
text-align: left;
margin-top: 100px;
justify-self: center;
border: 2px solid #099dfd;
width: 700px;
height: 400px;
}
.remoteStream {
text-align: left;
margin-top: 100px;
margin-left: 100px;
justify-self: center;
border: 2px solid #099dfd;
width: 700px;
height: 400px;
}