-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
79 lines (77 loc) · 1.17 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
body{
margin: 0;
background: rgba(0, 67, 66);
overflow: hidden;
}
.app{
display:flex;
flex-direction: row;
flex-wrap: nowrap;
height: 86vh;
font-size: 16px;
width: 60vw;
background: rgba(0, 0, 0, 0.6);
padding: 2%;
border-radius: 20px;
margin: 4% 40% 4% 4%;
}
.nav{
flex-basis: 30%;
background: rgba(255, 255, 255, 0.5);
}
.messages-container{
flex-basis: 70%;
width: 100%;
margin-bottom: 0;
height: 100%;
padding: 2%;
background: rgba(255, 255, 255, 0.1);
color: rgb(255, 255, 255);
}
.support, .users{
height: 50%;
margin-bottom: 0;
}
.channels, .users, .messages{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.channels, .users{
height: 70%;
}
.messages{
height: 94%;
}
.channels > ul, .messages > ul, .users > ul{
flex: 1;
overflow-y: auto;
}
.message > .author{
flex-basis: 100%;
}
.message > .body{
flex-basis: 100%;
}
.active {
background-color: rgba(0, 0, 0, 0.2);
}
.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;
}