-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.css
66 lines (65 loc) · 901 Bytes
/
app.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
.app{
display:flex;
flex-direction: row;
flex-wrap: nowrap;
height: 100vh;
font-size: 16px;
}
.nav{
flex-basis: 20%;
}
.messages-container{
flex-basis: 80%;
margin-bottom: 0;
height: 100vh;
}
.support, .users{
height: 50vh;
margin-bottom: 0;
}
.channels, .users, .messages{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.channels, .users{
height: 88%;
}
.messages{
height: 94%;
}
.channels > ul, .messages > ul, .users > ul{
flex: 1;
overflow-y: auto;
}
.message{
/*display: flex;*/
}
.message > .author{
flex-basis: 100%;
}
.message > .body{
flex-basis: 100%;
}
.active {
background-color: #E8E8E8;
}
.timestamp{
color: #808080;
font-style: italic;
padding-left: 10px;
font-size: 13px;
}
.form-group{
margin-bottom: 0;
}
ul{
list-style-type:none;
padding: 0;
}
li{
padding: 0 4px 0 4px;
}
a{
cursor: pointer;
}