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