forked from orangeable/javascript-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
48 lines (41 loc) · 802 Bytes
/
main.css
File metadata and controls
48 lines (41 loc) · 802 Bytes
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
body {
background-color: #222831;
font-family: "Segoe UI", "Helvetica Neue", sans-serif;
font-weight: 300;
font-size: 18pt;
color: #dfdbdb;
line-height: 1.60em;
overflow-x: hidden;
}
div#chat-messages {
width: 100%;
height: 80vh;
margin-bottom: 50px;
overflow-x: hidden;
overflow-y: auto;
}
form#chat-form input,
form#chat-form button {
border: 1px solid #dfdbdb;
background: none;
font-family: "Segoe UI", "Helvetica Neue", sans-serif;
font-weight: 300;
font-size: 18pt;
color: white;
padding: 8px 15px;
}
form#chat-form input {
width: 40vw;
}
form#chat-form button {
cursor: pointer;
}
div.message.green {
color: #95d592;
}
div.message.red {
color: #d59292;
}
div.message.blue {
color: #9592d5;
}