-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (108 loc) · 2.04 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
123
124
125
126
127
body {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.5em;
margin: 0;
padding: 0;
background-color: rgb(190, 201, 252);
}
h1 {
color: white;
background-color: navy;
padding: 10px;
text-align: center;
}
h2 {
color: white;
background-color: rgb(64, 64, 138);
padding: 10px;
}
h3 {
color: #fff;
background-color: rgb(117, 117, 185);
padding: 10px;
}
ul {
color: navy;
}
.barra {
color: #fff;
font-size: 1.5em;
font-weight: bold;
padding: 0.5em;
}
#sendButton {
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 100%;
}
#sendButton:hover {
background-color: #45a049;
}
table {
border-collapse: collapse;
border-color: navy;
text-align: center;
color: navy;
table-layout: fixed;
width: 100%;
height: 100%;
}
th, td {
width: 33%;
}
#dataChannelReceive {
margin: 4px 2px;
background-color: #f1f1f1;
overflow: auto;
width: 100%;
height: 100%;
}
#dataChannelSend {
margin: 4px 2px;
background-color: whitesmoke;
overflow: auto;
}
textarea {
overflow-y: scroll;
resize: none;
}
.message-sender {
background-color: #cdeedd;
color: navy;
text-align: right;;
padding: 5px;
margin-bottom: 5px;
border: 1px solid grey;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-right: 1%;
}
.message-receiver {
background-color: #cceeff;
color: navy;
text-align: left;
padding: 5px;
margin-bottom: 5px;
border: 1px solid grey;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#chat {
overflow-y: scroll;
height: 100%;
}
video {
width: 100%;
height: 100%;
object-fit: cover;
}