-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (50 loc) · 775 Bytes
/
styles.css
File metadata and controls
60 lines (50 loc) · 775 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
49
50
51
52
53
54
55
56
57
58
59
60
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
margin: 0;
padding: 0;
background-color: rgba(24, 24, 24, .7);
box-shadow: 0 0 8px 3px #000 inset;
-webkit-user-select: none;
color: #fff;
}
.container {
margin: 2px;
height: calc(100% - 4px);
-webkit-app-region: drag;
}
#chat_container {
padding: 8px 8px;
height: 100%;
overflow-y: hidden;
}
.chat + .chat {
margin-top: 8px;
}
.chat, .chat div {
display: flex;
}
.chat .icon, .icon img {
width: 32px;
height: 32px;
}
.icon img {
border-radius: 50%;
}
.content {
margin-left: 8px;
align-self: center;
}
.author {
margin-right: 8px;
line-height: 32px;
}
.message {
margin-right: 32px;
line-height: 32px;
width: 100%;
word-break : break-all;
}