37
|
1 body {
|
|
2 position: fixed;
|
|
3 top: 0;
|
|
4 bottom: 0;
|
|
5 left: 0;
|
|
6 right: 0;
|
|
7 }
|
|
8
|
48
|
9 div[chat_content] {
|
10
|
10 display: flex;
|
37
|
11 height: calc(100% - 32px);
|
10
|
12 }
|
|
13
|
|
14 div[chats] > div {
|
|
15 margin-top: 2px;
|
|
16 margin-bottom: 2px;
|
|
17 padding-top: 16px;
|
|
18 padding-bottom: 16px;
|
|
19 padding-left: 8px;
|
|
20 padding-right: 8px;
|
|
21 border-radius: 4px;
|
11
|
22 cursor: pointer;
|
10
|
23 }
|
|
24
|
|
25 div[chats] > div:hover,
|
|
26 div[chats] > div[selected] {
|
|
27 background-color: LightBlue;
|
|
28 }
|
|
29
|
|
30 div[posts] {
|
|
31 width: 100%;
|
|
32 display: flex;
|
|
33 flex-direction: column;
|
34
|
34 justify-content: space-between;
|
10
|
35 }
|
|
36
|
60
|
37 div[chat_content][show="intro"] div[posts] {
|
|
38 display: none;
|
|
39 }
|
|
40
|
10
|
41 div[posts] > * {
|
|
42 padding-right: 3vw;
|
|
43 }
|
|
44
|
|
45 div[top] {
|
|
46 display: flex;
|
|
47 justify-content: space-between;
|
|
48 align-items: center;
|
|
49 }
|
|
50
|
41
|
51 div[top] h3 a {
|
|
52 display: inline-block;
|
|
53 margin-bottom: -5px;
|
|
54 }
|
|
55 div[top] h3 a img {
|
|
56 display: block;
|
|
57 }
|
|
58
|
10
|
59 div[main] {
|
|
60 overflow-y: auto;
|
|
61 }
|
|
62
|
|
63 div[post] {
|
|
64 margin-top: 16px;
|
|
65 margin-bottom: 16px;
|
|
66 }
|
|
67
|
60
|
68 div[intro] {
|
|
69 width: 100%;
|
56
|
70 display: flex;
|
|
71 flex-direction: column;
|
|
72 align-items: center;
|
|
73 }
|
|
74
|
60
|
75 div[intro] form {
|
|
76 max-width: 100%;
|
|
77 }
|
|
78 div[intro] input[type=email] {
|
56
|
79 width: 250px;
|
60
|
80 max-width: 100%;
|
34
|
81 }
|
|
82
|
|
83 div[who] {
|
|
84 display: flex;
|
|
85 justify-content: space-between;
|
|
86 font-size: 12px;
|
|
87 color: grey;
|
|
88 }
|
|
89
|
22
|
90 span[pulldown] {
|
|
91 position: relative;
|
68
|
92 }
|
|
93
|
|
94 div[who] span[pulldown] {
|
35
|
95 width: 16px;
|
|
96 display: inline-block;
|
36
|
97 vertical-align: middle;
|
22
|
98 }
|
|
99
|
|
100 span[pulldown] > div {
|
|
101 display: none;
|
34
|
102 right: 100%;
|
22
|
103 z-index: 2;
|
|
104 position: absolute;
|
|
105 border: 1px solid #cccccc;
|
|
106 border-radius: 4px;
|
|
107 text-align: left;
|
|
108 background-color: #eeeeee;
|
|
109 padding: 5px 0;
|
|
110 }
|
|
111
|
68
|
112 div[who] span[pulldown] > div {
|
|
113 top: 0;
|
|
114 }
|
|
115
|
|
116 div[top] span[pulldown] > div {
|
|
117 right: 0;
|
|
118 }
|
|
119
|
22
|
120 span[pulldown] > div > span {
|
|
121 white-space: nowrap;
|
|
122 display: block;
|
|
123 padding: 3px 16px;
|
|
124 cursor: pointer;
|
|
125 }
|
|
126
|
|
127 span[pulldown] > div > span:hover {
|
|
128 color: #ffffff;
|
|
129 background-color: #428bca;
|
|
130 }
|
|
131
|
10
|
132 div[text] {
|
34
|
133 white-space: pre-wrap;
|
10
|
134 }
|
|
135
|
|
136 div[input] {
|
|
137 padding-top: 1em;
|
|
138 padding-bottom: 1em;
|
|
139 display: flex;
|
|
140 gap: 8px;
|
|
141 align-items: flex-end;
|
|
142 }
|
|
143
|
|
144 div[input] textarea {
|
|
145 flex-grow: 1;
|
|
146 max-height: 150px;
|
|
147 resize: none;
|
|
148 }
|
24
|
149
|
|
150 dialog textarea {
|
|
151 width: 600px;
|
|
152 max-width: 80vw;
|
|
153 }
|
27
|
154
|
33
|
155 span[online] {
|
|
156 display: inline-block;
|
|
157 aspect-ratio: 1;
|
|
158 background-color: grey;
|
34
|
159 height: 0.6em;
|
33
|
160 border-radius: 50%;
|
|
161 margin-left: 4px;
|
|
162 }
|
|
163
|
53
|
164 span[unread] {
|
|
165 font-size: small;
|
|
166 display: inline-block;
|
|
167 background-color: DodgerBlue;
|
|
168 color: white;
|
|
169 padding: 2px;
|
|
170 border-radius: calc(1em + 4px);
|
|
171 min-width: calc(1em + 4px);
|
|
172 text-align: center;
|
|
173 line-height: 1;
|
|
174 }
|
|
175 span[unread="0"] {
|
|
176 display: none;
|
|
177 }
|
27
|
178
|
63
|
179 input[type="file"] {
|
|
180 display: none;
|
|
181 }
|
|
182
|
65
|
183 div[people] {
|
|
184 margin-bottom: 40px;
|
|
185 }
|
|
186
|
|
187 div[people] img[phone] {
|
|
188 display: inline-block;
|
|
189 height: 1em;
|
|
190 }
|
|
191
|
27
|
192 @media (min-width: 700px) {
|
48
|
193 div[chat_content] {
|
27
|
194 margin-left: calc(3% - 8px);
|
|
195 margin-right: 0;
|
|
196 }
|
|
197
|
60
|
198 div[chat_content][show="chats"] div[intro],
|
|
199 div[chat_content][show="posts"] div[intro] {
|
|
200 display: none;
|
|
201 }
|
|
202
|
27
|
203 div[chats] {
|
60
|
204 overflow-y: auto;
|
27
|
205 width: 250px;
|
|
206 padding-right: 8px;
|
|
207 flex-shrink: 0;
|
|
208 }
|
|
209
|
60
|
210 div[intro],
|
27
|
211 div[posts] {
|
|
212 padding-left: 8px;
|
34
|
213 border-left: 1px solid grey;
|
27
|
214 }
|
|
215
|
41
|
216 div[top] img[back] {
|
27
|
217 display: none;
|
|
218 }
|
|
219 }
|
|
220
|
|
221 @media (max-width: 699px) {
|
60
|
222 div[chat_content][show="intro"],
|
|
223 div[chat_content][show="chats"] {
|
|
224 flex-direction: column;
|
|
225 overflow-y: auto;
|
|
226 }
|
|
227 div[chat_content][show="posts"] {
|
|
228 margin-left: 3%;
|
|
229 }
|
|
230
|
48
|
231 div[chat_content][show="chats"] div[posts],
|
60
|
232 div[chat_content][show="posts"] div[intro],
|
48
|
233 div[chat_content][show="posts"] div[chats] {
|
27
|
234 display: none;
|
|
235 }
|
|
236
|
60
|
237 div[chats],
|
|
238 div[intro] {
|
|
239 padding-left: 3%;
|
|
240 padding-right: 3%;
|
|
241 }
|
|
242
|
27
|
243 div[chats] {
|
|
244 width: 100%;
|
|
245 }
|
|
246
|
60
|
247 div[intro] {
|
|
248 margin-top: 20px;
|
|
249 border-top: 1px solid grey;
|
|
250 }
|
|
251
|
|
252 div[intro] [or] {
|
|
253 display: none;
|
|
254 }
|
|
255
|
48
|
256 div[chat_content][show="posts"] {
|
27
|
257 margin-right: 0;
|
|
258 }
|
|
259
|
|
260 div[top] h3 {
|
|
261 display: flex;
|
|
262 gap: 6px;
|
|
263 }
|
|
264 }
|