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