-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchat.css
70 lines (56 loc) · 853 Bytes
/
chat.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
.container {
display: grid;
grid-template-columns: 80% 20%;
column-gap: 2px;
row-gap: 2px;
}
.main-view {
border: 2px double black;
min-height: 400px;
}
.identity {
color: white;
background-color: rgba( 0, 30, 255, .3);
font-weight: bold;
}
.chat-feed {
display: flex;
flex-direction: column;
max-height: 600px;
overflow-y: scroll;
}
.editor {
display: grid;
grid-template-columns: 70% 30%;
column-gap: 2px;
row-gap: 2px;
}
.text {
}
#text-input {
min-width: 99.8%;
min-height: 100%;
padding: 0px;
margin:0px;
border: 1px solid black;
}
.button {
}
#send-button {
min-width: 99%;
min-height: 102%;
padding: 5px;
border: 1px solid black;
}
.user-list {
}
.user-list-title {
font-weight: 900;
}
.user-list-list {
font-size: 12px;
}
.chatM {
padding-left: 10px;
padding-top: 4px;
}