1 | @font-face
|
---|
2 | {
|
---|
3 | font-family: SansGeorgianRegular;
|
---|
4 | src: url(fonts/SansGeorgianRegular.ttf);
|
---|
5 | }
|
---|
6 |
|
---|
7 | @font-face
|
---|
8 | {
|
---|
9 | font-family: Roboto;
|
---|
10 | src: url(fonts/Roboto.ttf);
|
---|
11 | }
|
---|
12 |
|
---|
13 | * {
|
---|
14 | font-family: SansGeorgianRegular;
|
---|
15 | font-size: 16px;
|
---|
16 | background-color: #161616;
|
---|
17 | color: rgb(236, 235, 235);
|
---|
18 | padding: 0px;
|
---|
19 | margin: 0px;
|
---|
20 | }
|
---|
21 |
|
---|
22 | body
|
---|
23 | {
|
---|
24 | min-height: 100vh;
|
---|
25 | display: flex;
|
---|
26 | flex-direction: column;
|
---|
27 | }
|
---|
28 |
|
---|
29 | .Container
|
---|
30 | {
|
---|
31 | color: white;
|
---|
32 | padding: 50px;
|
---|
33 | margin-top: 50px;
|
---|
34 | }
|
---|
35 |
|
---|
36 | .FormSection
|
---|
37 | {
|
---|
38 | padding-top: 15px;
|
---|
39 | background-color: rgb(30, 30, 30);
|
---|
40 | padding-left: 5px;
|
---|
41 | padding-right: 5px;
|
---|
42 | }
|
---|
43 |
|
---|
44 | form
|
---|
45 | {
|
---|
46 | width: 470px;
|
---|
47 | background-color: rgb(30, 30, 30);
|
---|
48 | border: 1px solid rgb(2, 75, 209);
|
---|
49 | padding: 15px;
|
---|
50 | border-radius: 20px;
|
---|
51 | margin-left: auto;
|
---|
52 | margin-right: auto;
|
---|
53 | }
|
---|
54 |
|
---|
55 | form label
|
---|
56 | {
|
---|
57 | font-size: 28px;
|
---|
58 | background-color: rgb(30, 30, 30);
|
---|
59 | margin-bottom: 3px;
|
---|
60 | display: block
|
---|
61 | }
|
---|
62 |
|
---|
63 | form input
|
---|
64 | {
|
---|
65 | font-size: 24px;
|
---|
66 | width: 100%;
|
---|
67 | border-radius: 6px;
|
---|
68 | border: none;
|
---|
69 | padding: 2px 0px 2px 0px;
|
---|
70 | }
|
---|
71 |
|
---|
72 | #SubmitButton
|
---|
73 | {
|
---|
74 | margin-top: 20px;
|
---|
75 | background-color: rgb(2, 75, 209);
|
---|
76 | border-radius: 20px;
|
---|
77 | padding: 5px;
|
---|
78 | margin-bottom: 0px;
|
---|
79 | font-size: 36px;
|
---|
80 | width: auto;
|
---|
81 | margin-bottom: 15px;
|
---|
82 | transition: 0.3s;
|
---|
83 | }
|
---|
84 |
|
---|
85 | #SubmitButton:hover
|
---|
86 | {
|
---|
87 | background-color: rgb(49, 113, 233);
|
---|
88 | }
|
---|
89 |
|
---|
90 | .top-menu
|
---|
91 | {
|
---|
92 | width: 100%;
|
---|
93 | border-bottom: 1px solid #3171e9;
|
---|
94 | padding-bottom: 10px;
|
---|
95 | display: flex;
|
---|
96 | flex-direction: row;
|
---|
97 | justify-content: space-between;
|
---|
98 | align-items: center;
|
---|
99 | }
|
---|
100 |
|
---|
101 | .papalogo
|
---|
102 | {
|
---|
103 | font-size: 34px;
|
---|
104 | font-weight: bold;
|
---|
105 | vertical-align: middle;
|
---|
106 | margin-left: 15px;
|
---|
107 | user-select: none;
|
---|
108 | }
|
---|
109 |
|
---|
110 | .user-menu
|
---|
111 | {
|
---|
112 | text-align: right;
|
---|
113 | margin-right: 45px;
|
---|
114 | }
|
---|
115 |
|
---|
116 | .top-menu-items
|
---|
117 | {
|
---|
118 | font-size: 24px;
|
---|
119 | vertical-align: middle;
|
---|
120 | padding-left: 5px;
|
---|
121 | padding-right: 5px;
|
---|
122 | margin-left: 8px;
|
---|
123 | margin-right: 8px;
|
---|
124 | user-select: none;
|
---|
125 | outline: none;
|
---|
126 | text-decoration: none;
|
---|
127 | }
|
---|
128 |
|
---|
129 | .main
|
---|
130 | {
|
---|
131 | margin-top: 5px;
|
---|
132 | display: flex;
|
---|
133 | min-height: 100%;
|
---|
134 | position: relative;
|
---|
135 | height: calc(100vh - 11vh);
|
---|
136 | }
|
---|
137 |
|
---|
138 | ::-webkit-scrollbar
|
---|
139 | {
|
---|
140 | background-color: rgb(35, 35, 35);
|
---|
141 | }
|
---|
142 |
|
---|
143 | ::-webkit-scrollbar-thumb
|
---|
144 | {
|
---|
145 | background-color: rgb(2, 75, 209);
|
---|
146 | border-radius: 50px;
|
---|
147 | }
|
---|
148 |
|
---|
149 | .groups
|
---|
150 | {
|
---|
151 | flex: 25%;
|
---|
152 | background-color: #191919;
|
---|
153 | margin-left: 10px;
|
---|
154 | border: 1px solid white;
|
---|
155 | }
|
---|
156 |
|
---|
157 | .chat
|
---|
158 | {
|
---|
159 | flex: 75%;
|
---|
160 | background-color: inherit;
|
---|
161 | margin-right: 170px;
|
---|
162 | margin-left: 30px;
|
---|
163 | border: 1px solid white;
|
---|
164 | }
|
---|
165 |
|
---|
166 | .chat-content
|
---|
167 | {
|
---|
168 | overflow: auto;
|
---|
169 | height: 94%;
|
---|
170 | }
|
---|
171 |
|
---|
172 | .group-item
|
---|
173 | {
|
---|
174 | font-size: 30px;
|
---|
175 | margin-top: 12px;
|
---|
176 | margin-left: 5px;
|
---|
177 | margin-right: 5px;
|
---|
178 | background-color: #191919;
|
---|
179 | }
|
---|
180 |
|
---|
181 | .group-option
|
---|
182 | {
|
---|
183 | margin-top: 120px;
|
---|
184 | }
|
---|
185 |
|
---|
186 | .group-input
|
---|
187 | {
|
---|
188 | border: none;
|
---|
189 | background-color: rgb(54, 54, 54);
|
---|
190 | border-radius: 32px;
|
---|
191 | outline: none;
|
---|
192 | padding: 5px;
|
---|
193 | font-size: 22px;
|
---|
194 | }
|
---|
195 |
|
---|
196 | .register-content
|
---|
197 | {
|
---|
198 | margin-top: 150px;
|
---|
199 | text-align: center;
|
---|
200 | }
|
---|
201 |
|
---|
202 | .register-content h1
|
---|
203 | {
|
---|
204 | font-size: 38px;
|
---|
205 | }
|
---|
206 |
|
---|
207 | .register-content p
|
---|
208 | {
|
---|
209 | font-size: 24px;
|
---|
210 | }
|
---|
211 |
|
---|
212 | .register-content a
|
---|
213 | {
|
---|
214 | outline: none;
|
---|
215 | text-decoration: none;
|
---|
216 | color: #3171e9;
|
---|
217 | font-size: 21px;
|
---|
218 | }
|
---|
219 |
|
---|
220 | .register-content a:hover
|
---|
221 | {
|
---|
222 | color: rgb(3, 76, 211);
|
---|
223 | }
|
---|
224 |
|
---|
225 | .register-content img
|
---|
226 | {
|
---|
227 | user-select: none;
|
---|
228 | cursor: default;
|
---|
229 | }
|
---|
230 |
|
---|
231 | .FormSection a
|
---|
232 | {
|
---|
233 | outline: none;
|
---|
234 | text-decoration: none;
|
---|
235 | color:rgb(2, 75, 209);
|
---|
236 | background-color: rgb(30, 30, 30);
|
---|
237 | }
|
---|
238 |
|
---|
239 | .FormSection a:hover
|
---|
240 | {
|
---|
241 | color:rgb(49, 113, 233);
|
---|
242 | }
|
---|
243 |
|
---|
244 | .drop-down
|
---|
245 | {
|
---|
246 | display: block;
|
---|
247 | position: absolute;
|
---|
248 | background-color: rgb(51, 51, 51);
|
---|
249 | }
|
---|
250 |
|
---|
251 | .drop-down ul
|
---|
252 | {
|
---|
253 | padding: 0px 7px 0px 15px;
|
---|
254 | list-style: none;
|
---|
255 | list-style-type: none;
|
---|
256 | background-color: rgb(51, 51, 51);
|
---|
257 | }
|
---|
258 |
|
---|
259 | .drop-down ul li::before
|
---|
260 | {
|
---|
261 | content: "\2022";
|
---|
262 | color: rgb(2, 75, 209);
|
---|
263 | font-weight: bold;
|
---|
264 | display: inline-block;
|
---|
265 | width: 15px;
|
---|
266 | margin-left: -1em;
|
---|
267 | }
|
---|
268 |
|
---|
269 |
|
---|
270 | .drop-down-item
|
---|
271 | {
|
---|
272 | padding: 4px 5px 4px 7px;
|
---|
273 | margin: 0px 0px 4px 0px;
|
---|
274 | background-color: rgb(51, 51, 51);
|
---|
275 | font-size: 19px;
|
---|
276 | width: 270px;
|
---|
277 | }
|
---|
278 |
|
---|
279 | .message-box
|
---|
280 | {
|
---|
281 | display: flex;
|
---|
282 | justify-content: center;
|
---|
283 | background-color: #292929;
|
---|
284 | padding: 5px 5px 5px 5px;
|
---|
285 | }
|
---|
286 |
|
---|
287 | .message-box input
|
---|
288 | {
|
---|
289 | font-size: 20px;
|
---|
290 | border: none;
|
---|
291 | border-radius: 20px;
|
---|
292 | padding: 5px;
|
---|
293 | outline: none;
|
---|
294 | position: relative;
|
---|
295 | background-color: rgb(30, 30, 30);
|
---|
296 | font-size: 17px;
|
---|
297 | }
|
---|
298 |
|
---|
299 | .message-box button
|
---|
300 | {
|
---|
301 | border: none;
|
---|
302 | background-color: rgb(2, 75, 209);
|
---|
303 | padding: 8px 20px 8px 20px;
|
---|
304 | vertical-align: center;
|
---|
305 | border-radius: 20px;
|
---|
306 | margin-left: 15px;
|
---|
307 | font-size: 17px;
|
---|
308 | }
|
---|
309 |
|
---|
310 | .chat-other
|
---|
311 | {
|
---|
312 | background-color: #292929;
|
---|
313 | margin-top: 10px;
|
---|
314 | margin-left: 5px;
|
---|
315 | }
|
---|
316 |
|
---|
317 | .chat-current
|
---|
318 | {
|
---|
319 | background-color: rgb(2, 75, 209);
|
---|
320 | margin-top: 10px;
|
---|
321 | text-align: right;
|
---|
322 | margin-right: 5px;
|
---|
323 | }
|
---|
324 |
|
---|
325 | .chat-content span
|
---|
326 | {
|
---|
327 | padding: 2px 15px 2px 15px;
|
---|
328 | border-radius: 25px;
|
---|
329 | font-size: 18px;
|
---|
330 | text-align: right;
|
---|
331 | }
|
---|
332 |
|
---|
333 | .Message
|
---|
334 | {
|
---|
335 | margin-bottom: 6px;
|
---|
336 | }
|
---|
337 |
|
---|
338 | .group-item-head
|
---|
339 | {
|
---|
340 | background-color: #303030;
|
---|
341 | padding: 8px 2px 2px 8px;
|
---|
342 | }
|
---|
343 |
|
---|
344 | .group-item-head span
|
---|
345 | {
|
---|
346 | font-size: 24px;
|
---|
347 | background-color: #303030;
|
---|
348 | margin-left: 10px;
|
---|
349 | }
|
---|
350 |
|
---|
351 | .group-item-body
|
---|
352 | {
|
---|
353 | font-size: 17px;
|
---|
354 | background-color: #303030;
|
---|
355 | padding: 2px 2px 8px 8px;
|
---|
356 | }
|
---|
357 |
|
---|
358 | .item-image
|
---|
359 | {
|
---|
360 | vertical-align: bottom;
|
---|
361 | background-color: rgb(59, 188, 231);
|
---|
362 | border-radius: 100%;
|
---|
363 | }
|
---|
364 |
|
---|
365 | .ContainerProfile
|
---|
366 | {
|
---|
367 | background-color: rgb(35, 35, 35);
|
---|
368 | margin: 40px 375px 40px 375px;
|
---|
369 | padding: 15px 20px 15px 20px;
|
---|
370 | border-radius: 20px;
|
---|
371 | }
|
---|
372 |
|
---|
373 | .header
|
---|
374 | {
|
---|
375 | align-items: center;
|
---|
376 | gap: 30px;
|
---|
377 | display: flex;
|
---|
378 | background-color: rgb(35, 35, 35);
|
---|
379 | }
|
---|
380 |
|
---|
381 | .Description
|
---|
382 | {
|
---|
383 | background-color: rgb(35, 35, 35);
|
---|
384 | margin-top: 40px;
|
---|
385 | }
|
---|
386 |
|
---|
387 | .Description textarea
|
---|
388 | {
|
---|
389 | width: 100%;
|
---|
390 | resize: none;
|
---|
391 | }
|
---|
392 |
|
---|
393 | .username
|
---|
394 | {
|
---|
395 | display: inline;
|
---|
396 | font-size: 24px;
|
---|
397 | background-color: rgb(35, 35, 35);
|
---|
398 | }
|
---|
399 |
|
---|
400 | .email
|
---|
401 | {
|
---|
402 | display: block;
|
---|
403 | font-size: 20px;
|
---|
404 | color: rgb(206, 206, 206);
|
---|
405 | background-color: rgb(35, 35, 35);
|
---|
406 | }
|
---|
407 |
|
---|
408 | .userandemail
|
---|
409 | {
|
---|
410 | display: inline;
|
---|
411 | background-color: rgb(35, 35, 35);
|
---|
412 | } |
---|