-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchats.html
124 lines (119 loc) · 4.71 KB
/
chats.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="./js/random.js"></script>
<script defer src="js/clock.js"></script>
<script defer src="js/search.js"></script>
<title>Chats - We Bare Bears Talk</title>
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>No Service</span>
<i class="fas fa-wifi"></i>
</div>
<div class="status-bar__column">
<span id="clock">00:00</span>
</div>
<div class="status-bar__column">
<span>110%</span>
<i class="fas fa-battery-full fa-lg"></i>
<i class="fas fa-bolt"></i>
</div>
</div>
<header class="screen-header">
<h1 class="screen-header__title">Chats</h1>
<div class="screen-header__icons">
<label>
<input class="searchInput" id="search"type="text" placeholder="Write a name and chatting..." onkeyup="filter()">
</label>
<i class="fas fa-search fa-lg seach__animation"></i>
<span><i class="far fa-comment-dots fa-lg"></i></span>
<span><i class="fas fa-music fa-lg"></i></span>
<a href="settings.html">
<span><i class="fas fa-cog fa-lg"></i></span>
</a>
</div>
</header>
<main class="main-screen">
<a href="chat.html">
<div class="user-component-chat">
<div class="user-component__chat-list list-component">
<img src="./img/panda.jpg" class="user-compinent__avatar user-component__avatar" />
<div class="user-compinent__chat-text">
<span class="user-component__title list-title">Panda</span>
<span class="user-component__subtitle list-subtitle">
please check
</span>
</div>
<div class="user-component__column notice">
<span class="user-component--time">13:27</span>
<div class="badge">1</div>
</div>
</div>
</a>
<div class="user-component__chat-list list-component">
<img src="./img/chloe.jpg" class="user-compinent__avatar user-component__avatar" />
<div class="user-compinent__chat-text">
<span class="user-component__title list-title">Chloe</span>
<span class="user-component__subtitle list-subtitle">
please check
</span>
</div>
<div class="user-component__column notice">
<span class="user-component--time">13:27</span>
</div>
</div>
<div class="user-component__chat-list list-component">
<img src="./img/Icebear.jpg" class="user-compinent__avatar user-component__avatar" />
<div class="user-compinent__chat-text">
<span class="user-component__title list-title">Ice bear</span>
<span class="user-component__subtitle list-subtitle">
please check
</span>
</div>
<div class="user-component__column notice">
<span class="user-component--time">13:27</span>
</div>
</div>
</div>
</main>
<nav class="nav">
<ul class="nav__list">
<li class="nav__btn">
<a class="nav__link" href="friends.html">
<i class="far fa-user fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="chats.html">
<span class="nav__notification badge">1</span>
<i class="fas fa-comment fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="find.html">
<i class="fas fa-search fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="more.html">
<div class="nav__ball badge-sm"></div>
<i class="fas fa-ellipsis-h fa-2x"></i>
</a>
</li>
</ul>
</nav>
<div id="no-mobile">
<span>Your screen is too big ㅠㅠ</span>
</div>
<script
src="https://kit.fontawesome.com/f1d6ea217b.js"
crossorigin="anonymous"
></script>
</body>
</html>