-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
548 lines (541 loc) · 20.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VideoCall App UI - Navid Dev</title>
<!-- Add Google Font -->
<link
href="https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="app-container">
<button class="mode-switch">
<!-- sun icon -->
<svg
class="sun"
fill="none"
stroke="#fbb046"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="feather feather-sun"
viewBox="0 0 24 24"
>
<defs />
<circle cx="12" cy="12" r="5" />
<path
d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"
/>
</svg>
<!-- sun icon -->
<!-- moon icon -->
<svg
class="moon"
fill="none"
stroke="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="feather feather-moon"
viewBox="0 0 24 24"
>
<defs />
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" />
</svg>
<!-- moon icon -->
</button>
<div class="left-side">
<div class="navigation">
<a href="#" class="nav-link icon">
<!-- Home icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-home"
viewBox="0 0 24 24"
>
<path d="M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z" />
<path d="M9 22V12h6v10" />
</svg>
<!-- Home icon -->
</a>
<a href="#" class="nav-link icon">
<!-- comment icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-message-square"
>
<path
d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
/>
</svg>
<!-- comment icon -->
</a>
<a href="#" class="nav-link icon">
<!-- ringing phone icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-phone-call"
viewBox="0 0 24 24"
>
<path
d="M15.05 5A5 5 0 0119 8.95M15.05 1A9 9 0 0123 8.94m-1 7.98v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z"
/>
</svg>
<!-- ringing phone icon -->
</a>
<a href="#" class="nav-link icon">
<!-- disk icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-hard-drive"
>
<line x1="22" y1="12" x2="2" y2="12" />
<path
d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
/>
<line x1="6" y1="16" x2="6.01" y2="16" />
<line x1="10" y1="16" x2="10.01" y2="16" />
</svg>
<!-- disk icon -->
</a>
<a href="#" class="nav-link icon">
<!-- people icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-users"
>
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
<circle cx="9" cy="7" r="4" />
<path d="M23 21v-2a4 4 0 0 0-3-3.87" />
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
</svg>
<!-- people icon -->
</a>
<a href="#" class="nav-link icon">
<!-- Folder icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-folder"
viewBox="0 0 24 24"
>
<path
d="M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z"
/>
</svg>
<!-- Folder icon -->
</a>
<a href="#" class="nav-link icon">
<!-- Setting icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-settings"
viewBox="0 0 24 24"
>
<circle cx="12" cy="12" r="3" />
<path
d="M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06a1.65 1.65 0 001.82.33H9a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z"
/>
</svg>
<!-- Setting icon -->
</a>
</div>
</div>
<div class="app-main">
<div class="video-call-wrapper">
<!-- Video Participant 1 -->
<div class="video-participant">
<div class="participant-action">
<button class="btn-mute"></button>
<button class="btn-camera"></button>
</div>
<a href="#" class="name-tag">Andy Will</a>
<img
src="https://images.unsplash.com/photo-1566821582776-92b13ab46bb4?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60"
alt="participant"
/>
</div>
<!-- Video Participant 2 -->
<div class="video-participant">
<div class="participant-action">
<button class="btn-mute"></button>
<button class="btn-camera"></button>
</div>
<a href="#" class="name-tag">Emmy Lou</a>
<img
src="https://images.unsplash.com/photo-1500917293891-ef795e70e1f6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80"
alt="participant"
/>
</div>
<!-- Video Participant 3 -->
<div class="video-participant">
<div class="participant-action">
<button class="btn-mute"></button>
<button class="btn-camera"></button>
</div>
<a href="#" class="name-tag">Tim Russel</a>
<img
src="https://images.unsplash.com/photo-1576110397661-64a019d88a98?ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
alt="participant"
/>
</div>
<!-- Video Participant 4 -->
<div class="video-participant">
<div class="participant-action">
<button class="btn-mute"></button>
<button class="btn-camera"></button>
</div>
<a href="#" class="name-tag">Jessica Bell</a>
<img
src="https://images.unsplash.com/photo-1600207438283-a5de6d9df13e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1234&q=80"
alt="participant"
/>
</div>
<!-- Video Participant 5 -->
<div class="video-participant">
<div class="participant-action">
<button class="btn-mute"></button>
<button class="btn-camera"></button>
</div>
<a href="#" class="name-tag">Ryan Patrick</a>
<img
src="https://images.unsplash.com/photo-1581824283135-0666cf353f35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1276&q=80"
alt="participant"
/>
</div>
<!-- Video Participant 6 -->
<div class="video-participant">
<div class="participant-action">
<button class="btn-mute"></button>
<button class="btn-camera"></button>
</div>
<a href="#" class="name-tag">Tina Cate</a>
<img
src="https://images.unsplash.com/photo-1542596594-649edbc13630?ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
alt="participant"
/>
</div>
</div>
<div class="video-call-actions">
<button class="video-action-button mic"></button>
<button class="video-action-button camera"></button>
<button class="video-action-button maximize"></button>
<button class="video-action-button endcall">Leave</button>
<button class="video-action-button magnifier">
<!-- ZoomIn icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-zoom-in"
viewBox="0 0 24 24"
>
<circle cx="11" cy="11" r="8" />
<path d="M21 21l-4.35-4.35M11 8v6M8 11h6" />
</svg>
<!-- ZoomIn icon -->
<span>100%</span>
<!-- ZoomOut Icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-zoom-out"
>
<circle cx="11" cy="11" r="8" />
<line x1="21" y1="21" x2="16.65" y2="16.65" />
<line x1="8" y1="11" x2="14" y2="11" />
</svg>
<!-- ZoomOut Icon -->
</button>
</div>
</div>
<!-- Right Side -->
<div class="right-side">
<button class="btn-close-right">
<!-- Close Icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="feather feather-x-circle"
viewBox="0 0 24 24"
>
<defs></defs>
<circle cx="12" cy="12" r="10"></circle>
<path d="M15 9l-6 6M9 9l6 6"></path>
</svg>
<!-- Close Icon -->
</button>
<div class="chat-container">
<div class="chat-header">
<button class="chat-header-button">Live Chat</button>
</div>
<div class="chat-area">
<!-- Message 1 -->
<div class="message-wrapper">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1581824283135-0666cf353f35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1276&q=80"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Ryan Patrick</p>
<div class="message">Helloo team!😍</div>
</div>
</div>
<!-- Message 2 -->
<div class="message-wrapper">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1566821582776-92b13ab46bb4?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Andy Will</p>
<div class="message">
Hello! Can you hear me?🤯 <a class="mention">@ryanpatrick</a>
</div>
</div>
</div>
<!-- Message 3 -->
<div class="message-wrapper">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1600207438283-a5de6d9df13e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1234&q=80"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Jessica Bell</p>
<div class="message">Hi team! Let's get started it.</div>
</div>
</div>
<!-- Message 4 -->
<div class="message-wrapper reverse">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1500917293891-ef795e70e1f6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Emmy Lou</p>
<div class="message">Good morning!🌈</div>
</div>
</div>
<!-- Message 5 -->
<div class="message-wrapper">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1576110397661-64a019d88a98?ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Tim Russel</p>
<div class="message">New design document⬇️</div>
<div class="message-file">
<div class="icon sketch">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
fill="#ffd54f"
d="M96 191.02v-144l160-30.04 160 30.04v144z"
/>
<path
fill="#ffecb3"
d="M96 191.02L256 16.98l160 174.04z"
/>
<path fill="#ffa000" d="M0 191.02l256 304 256-304z" />
<path fill="#ffca28" d="M96 191.02l160 304 160-304z" />
<g fill="#ffc107">
<path d="M0 191.02l96-144v144zM416 47.02v144h96z" />
</g>
</svg>
</div>
<div class="file-info">
<div class="file-name">NewYear.sketch</div>
<div class="file-size">120 MB</div>
</div>
</div>
</div>
</div>
<!-- Message 6 -->
<div class="message-wrapper">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1581824283135-0666cf353f35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1276&q=80"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Ryan Patrick</p>
<div class="message">Hi team!❤️</div>
<div class="message">
I downloaded the file <a class="mention">@timrussel</a>
</div>
</div>
</div>
<!-- Message 7 -->
<div class="message-wrapper reverse">
<div class="profile-picture">
<img
src="https://images.unsplash.com/photo-1500917293891-ef795e70e1f6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80"
alt=""
/>
</div>
<div class="message-content">
<p class="name">Emmy Lou</p>
<div class="message">Woooww! Awesome❤️</div>
</div>
</div>
</div>
<div class="chat-typing-area-wrapper">
<div class="chat-typing-area">
<input
type="text"
placeholder="Type your message..."
class="chat-input"
/>
<button class="send-button">
<!-- Send icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-send"
viewBox="0 0 24 24"
>
<path d="M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z" />
</svg>
<!-- Send icon -->
</button>
</div>
</div>
</div>
<div class="participants">
<!-- Participant pic 1 -->
<div class="participant profile-picture">
<img
src="https://images.unsplash.com/photo-1576110397661-64a019d88a98?ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
alt=""
/>
</div>
<!-- Participant pic 2 -->
<div class="participant profile-picture">
<img
src="https://images.unsplash.com/photo-1566821582776-92b13ab46bb4?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60"
alt=""
/>
</div>
<!-- Participant pic 3 -->
<div class="participant profile-picture">
<img
src="https://images.unsplash.com/photo-1600207438283-a5de6d9df13e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1234&q=80"
alt=""
/>
</div>
<!-- Participant pic 4 -->
<div class="participant profile-picture">
<img
src="https://images.unsplash.com/photo-1581824283135-0666cf353f35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1276&q=80"
alt=""
/>
</div>
<div class="participant-more">2+</div>
</div>
</div>
<button class="expand-btn">
<!-- expand icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-message-circle"
>
<path
d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
/>
</svg>
<!-- expand icon -->
</button>
</div>
<script src="script.js"></script>
</body>
</html>