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;
|
22
|
71 }
|
|
72
|
|
73 span[pulldown] > div {
|
|
74 display: none;
|
|
75 top: 0;
|
34
|
76 right: 100%;
|
22
|
77 z-index: 2;
|
|
78 position: absolute;
|
|
79 border: 1px solid #cccccc;
|
|
80 border-radius: 4px;
|
|
81 text-align: left;
|
|
82 background-color: #eeeeee;
|
|
83 padding: 5px 0;
|
|
84 }
|
|
85
|
|
86 span[pulldown] > div > span {
|
|
87 white-space: nowrap;
|
|
88 display: block;
|
|
89 padding: 3px 16px;
|
|
90 xcolor: #333333;
|
|
91 cursor: pointer;
|
|
92 }
|
|
93
|
|
94 span[pulldown] > div > span:hover {
|
|
95 color: #ffffff;
|
|
96 background-color: #428bca;
|
|
97 }
|
|
98
|
10
|
99 div[text] {
|
34
|
100 white-space: pre-wrap;
|
10
|
101 }
|
|
102
|
|
103 div[input] {
|
|
104 padding-top: 1em;
|
|
105 padding-bottom: 1em;
|
|
106 display: flex;
|
|
107 gap: 8px;
|
|
108 align-items: flex-end;
|
|
109 }
|
|
110
|
|
111 div[input] textarea {
|
|
112 flex-grow: 1;
|
|
113 max-height: 150px;
|
|
114 resize: none;
|
|
115 }
|
24
|
116
|
|
117 dialog textarea {
|
|
118 width: 600px;
|
|
119 max-width: 80vw;
|
|
120 }
|
27
|
121
|
33
|
122 span[online] {
|
|
123 display: inline-block;
|
|
124 aspect-ratio: 1;
|
|
125 background-color: grey;
|
34
|
126 height: 0.6em;
|
33
|
127 border-radius: 50%;
|
|
128 margin-left: 4px;
|
|
129 }
|
|
130
|
27
|
131
|
|
132 @media (min-width: 700px) {
|
|
133 div[content] {
|
|
134 margin-left: calc(3% - 8px);
|
|
135 margin-right: 0;
|
|
136 }
|
|
137
|
|
138 div[chats] {
|
|
139 width: 250px;
|
|
140 padding-right: 8px;
|
|
141 flex-shrink: 0;
|
|
142 }
|
|
143
|
|
144 div[posts] {
|
|
145 padding-left: 8px;
|
34
|
146 border-left: 1px solid grey;
|
27
|
147 }
|
|
148
|
|
149 div[top] img {
|
|
150 display: none;
|
|
151 }
|
|
152 }
|
|
153
|
|
154 @media (max-width: 699px) {
|
|
155 div[content][show="chats"] div[posts],
|
|
156 div[content][show="posts"] div[chats] {
|
|
157 display: none;
|
|
158 }
|
|
159
|
|
160 div[chats] {
|
|
161 width: 100%;
|
|
162 }
|
|
163
|
|
164 div[content][show="posts"] {
|
|
165 margin-right: 0;
|
|
166 }
|
|
167
|
|
168 div[top] h3 {
|
|
169 display: flex;
|
|
170 gap: 6px;
|
|
171 }
|
|
172 }
|