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;
|
35
|
92 width: 16px;
|
|
93 display: inline-block;
|
36
|
94 vertical-align: middle;
|
22
|
95 }
|
|
96
|
|
97 span[pulldown] > div {
|
|
98 display: none;
|
|
99 top: 0;
|
34
|
100 right: 100%;
|
22
|
101 z-index: 2;
|
|
102 position: absolute;
|
|
103 border: 1px solid #cccccc;
|
|
104 border-radius: 4px;
|
|
105 text-align: left;
|
|
106 background-color: #eeeeee;
|
|
107 padding: 5px 0;
|
|
108 }
|
|
109
|
|
110 span[pulldown] > div > span {
|
|
111 white-space: nowrap;
|
|
112 display: block;
|
|
113 padding: 3px 16px;
|
|
114 xcolor: #333333;
|
|
115 cursor: pointer;
|
|
116 }
|
|
117
|
|
118 span[pulldown] > div > span:hover {
|
|
119 color: #ffffff;
|
|
120 background-color: #428bca;
|
|
121 }
|
|
122
|
10
|
123 div[text] {
|
34
|
124 white-space: pre-wrap;
|
10
|
125 }
|
|
126
|
|
127 div[input] {
|
|
128 padding-top: 1em;
|
|
129 padding-bottom: 1em;
|
|
130 display: flex;
|
|
131 gap: 8px;
|
|
132 align-items: flex-end;
|
|
133 }
|
|
134
|
|
135 div[input] textarea {
|
|
136 flex-grow: 1;
|
|
137 max-height: 150px;
|
|
138 resize: none;
|
|
139 }
|
24
|
140
|
|
141 dialog textarea {
|
|
142 width: 600px;
|
|
143 max-width: 80vw;
|
|
144 }
|
27
|
145
|
33
|
146 span[online] {
|
|
147 display: inline-block;
|
|
148 aspect-ratio: 1;
|
|
149 background-color: grey;
|
34
|
150 height: 0.6em;
|
33
|
151 border-radius: 50%;
|
|
152 margin-left: 4px;
|
|
153 }
|
|
154
|
53
|
155 span[unread] {
|
|
156 font-size: small;
|
|
157 display: inline-block;
|
|
158 background-color: DodgerBlue;
|
|
159 color: white;
|
|
160 padding: 2px;
|
|
161 border-radius: calc(1em + 4px);
|
|
162 min-width: calc(1em + 4px);
|
|
163 text-align: center;
|
|
164 line-height: 1;
|
|
165 }
|
|
166 span[unread="0"] {
|
|
167 display: none;
|
|
168 }
|
27
|
169
|
63
|
170 input[type="file"] {
|
|
171 display: none;
|
|
172 }
|
|
173
|
27
|
174 @media (min-width: 700px) {
|
48
|
175 div[chat_content] {
|
27
|
176 margin-left: calc(3% - 8px);
|
|
177 margin-right: 0;
|
|
178 }
|
|
179
|
60
|
180 div[chat_content][show="chats"] div[intro],
|
|
181 div[chat_content][show="posts"] div[intro] {
|
|
182 display: none;
|
|
183 }
|
|
184
|
27
|
185 div[chats] {
|
60
|
186 overflow-y: auto;
|
27
|
187 width: 250px;
|
|
188 padding-right: 8px;
|
|
189 flex-shrink: 0;
|
|
190 }
|
|
191
|
60
|
192 div[intro],
|
27
|
193 div[posts] {
|
|
194 padding-left: 8px;
|
34
|
195 border-left: 1px solid grey;
|
27
|
196 }
|
|
197
|
41
|
198 div[top] img[back] {
|
27
|
199 display: none;
|
|
200 }
|
|
201 }
|
|
202
|
|
203 @media (max-width: 699px) {
|
60
|
204 div[chat_content][show="intro"],
|
|
205 div[chat_content][show="chats"] {
|
|
206 flex-direction: column;
|
|
207 overflow-y: auto;
|
|
208 }
|
|
209 div[chat_content][show="posts"] {
|
|
210 margin-left: 3%;
|
|
211 }
|
|
212
|
48
|
213 div[chat_content][show="chats"] div[posts],
|
60
|
214 div[chat_content][show="posts"] div[intro],
|
48
|
215 div[chat_content][show="posts"] div[chats] {
|
27
|
216 display: none;
|
|
217 }
|
|
218
|
60
|
219 div[chats],
|
|
220 div[intro] {
|
|
221 padding-left: 3%;
|
|
222 padding-right: 3%;
|
|
223 }
|
|
224
|
27
|
225 div[chats] {
|
|
226 width: 100%;
|
|
227 }
|
|
228
|
60
|
229 div[intro] {
|
|
230 margin-top: 20px;
|
|
231 border-top: 1px solid grey;
|
|
232 }
|
|
233
|
|
234 div[intro] [or] {
|
|
235 display: none;
|
|
236 }
|
|
237
|
48
|
238 div[chat_content][show="posts"] {
|
27
|
239 margin-right: 0;
|
|
240 }
|
|
241
|
|
242 div[top] h3 {
|
|
243 display: flex;
|
|
244 gap: 6px;
|
|
245 }
|
|
246 }
|