-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (51 loc) · 873 Bytes
/
style.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
.chat {
height: 400px;
overflow-y: auto;
}
.chat-content {
border: 1px solid #ccc;
border-radius: 5px;
padding-top: 10px;
}
.chat-root {
padding: 20px;
}
.bubble {
padding: 5px 10px;
margin: 5px;
border-radius: 8px;
display: inline-block;
font-size: 12px;
}
.mine {
text-align: right;
}
.mine.sent .bubble {
background-color: #c3ed7d;
}
.mine.received .bubble {
background-color: #73a233;
}
.his.sent .bubble {
background-color: #87e1f6;
}
.his.received .bubble {
background-color: #418faf;
}
.message {
padding: 5px;
background-color: #faf8f3;
border-top: 1px solid #ccc;
}
.chat .message:last-child {
border-bottom: 1px solid #ccc;
}
.nav-link {
font-size: 14px;
text-transform: uppercase;
color: #111;
font-weight: 600;
}
.nav-link.active {
color: #63b485 !important;
}