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