forked from varunon9/webRTC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
127 lines (127 loc) · 1.8 KB
/
main.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
127
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
font-family: "Times New Roman", Times, serif;
font-size: 1em;
}
input {
font-size: 1em;
}
#main {
width: 100%;
height: 67%;
text-align: center;
overflow: hidden;
}
#connectionStatus {
color: purple;
}
#makeConnection {
width: 100%;
}
#makeConnection input[type="text"] {
min-width: 40%;
}
#videoContainer {
width: 100%;
position: relative;
}
#localVideo, #remoteVideo {
background: silver;
vertical-align: text-top;
}
#localVideoController {
width: 25%;
margin: 0% 1% 1% 1%;
float: left;
}
#localVideo {
position: relative;
width: 100%;
}
#remoteVideoContainer {
width: 40%;
margin: 0% 1% 1% 1%;
float: left;
}
#remoteVideo {
position: relative;
width: 100%;
}
#toast {
background: silver;
width: 25%;
margin: 0% 1% 1% 1%;
float: left;
}
#control {
position: relative;
width: 100%;
margin-top: 20px;
}
#control input[type="button"] {
float: left;
margin-left: 2%;
}
#chatMessages {
width: 98%;
height: 20%;
overflow-X: hidden;
overflow-Y: scroll;
position: relative;
margin: 1% 1% 1% 1%;
background: silver;
}
#chatMessages ol li:nth-child(odd) {
color: purple;
}
#chatMessages ol li:nth-child(even) {
color: green;
}
#typeMessages {
width: 98%;
height: 10%;
margin: 1% 1% 1% 1%;
position: relative;
overflow: hidden;
}
#typeMessagesForm {
margin: 0;
padding: 0;
}
#chatTextField {
width: 80%;
float: left;
}
#sendMessageButton {
width: 12%;
float: left;
margin-left: 1%;
}
@media only screen and (max-width: 720px) {
body {
font-size: .8em;
}
input {
font-size: 1em;
}
}
@media only screen and (max-width: 420px) {
body {
font-size: .7em;
}
#control input[type="button"] {
width: 45%;
}
}
@media only screen and (max-width: 320px) {
body {
font-size: .6em;
}
}