-
Notifications
You must be signed in to change notification settings - Fork 370
Expand file tree
/
Copy pathmain.css
More file actions
91 lines (74 loc) · 1.18 KB
/
main.css
File metadata and controls
91 lines (74 loc) · 1.18 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
html, body {
padding: 0;
margin: 0;
height: 100%;
}
body {
font-size: 15px;
font-weight: 400;
line-height: 1.5;
}
.mainBody {
width: 100%;
min-height: 100vh;
}
.mainBody header {
background: #0c5db8;
}
.mainBody .sidebar {
background: #471c84;
height: auto;
flex: 0 0 200px;
}
.mainBody .sidebar, .mainBody .sidebar .btn {
color: #85808d;
}
header {
color: #fefefe;
}
.mainBody .sidebar .btn.active {
color: #adb5bd;
}
.mainBody .sidebar .btn {
padding: 0;
}
.mainBody .sidebar .btn:hover {
color: #fff;
}
.messages {
flex: 1 1 auto;
}
.messages-list-container {
max-height: calc(100vh - 210px);
overflow-y: auto;
}
.message-area-wrapper {
border-radius: 5px;
border: 1px solid #1b1e21;
width: 100%;
}
.message-area {
border: none;
overflow: auto;
outline: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
resize: none;
width: 100%;
}
.new-channel-lightbox {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
justify-content: center;
align-items: center;
}
.new-channel-modal {
background: #fff;
border-radius: 5px;
border: 1px solid #000;
}