-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriends.html
More file actions
106 lines (100 loc) · 4.25 KB
/
friends.html
File metadata and controls
106 lines (100 loc) · 4.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>friends - Kokoatalk</title>
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>No Service</span>
<i class="fa-solid fa-wifi"></i>
</div>
<div class="status-bar__column"><span>18:43</span>
</div>
<div class="status-bar__column">
<span>110%</span>
<i class="fa-solid fa-battery-full fa-lg"></i>
<i class="fa-solid fa-bolt"></i>
</div>
</div>
<header class="screen_header">
<h1 class="screen_header__title">Friends</h1>
<div class="screen_header__icon">
<span><i class="fa-solid fa-magnifying-glass fa-lg"></i></span>
<span><i class="fa-solid fa-music fa-lg"></i></span>
<span><a href="settings.html"><i class="fa-solid fa-gear fa-lg"><div class="screen_header__badge"></div></i></a></span>
</div>
</header>
<a id="friends-display-link">
<i class="fa-solid fa-circle-info"></i> Friends' Names Display <i class="fa-solid fa-chevron-right fa-xs"></i>
</a>
<main class="friends__screen">
<div class="user-component">
<div class="user-component__column">
<img src="https://img.vogue.co.kr/vogue/2024/02/style_65d557b8b853d-982x1400.jpg" class="user-component__avatar user-component__avatar--xl" />
<div class="user-component__text">
<h4 class="user-component__title">Bella</h4>
<!-- <h6 class="user-component__subtitle">this text whatever</h6> -->
</div>
</div>
<div class="user-component__column"></div>
</div>
<div class="friends-screen_channel">
<div class="friends-screen_channel-header">
<span>Channel</span>
<i class="fa-solid fa-chevron-up fa-xs"></i>
</div>
<div class="user-component">
<div class="user-component__column">
<img src="https://play-lh.googleusercontent.com/cf3DwPLbS8Z55sDvUSTQ6PL1goPdm8KbZ81g4TEUAaeUh5LDhkzdjxKQ2RX6BGpv0x4" class="user-component__avatar user-component__avatar--sm" />
<div class="https://t1.kakaocdn.net/rocket/static/images/meta_kakao_talk_channel_symbol.png">Channel</h4>
<!-- <h6 class="user-component__subtitle"> It is the goal of all to improve, advance, progress, grow.</h6> -->
</div>
</div>
<div class="user-component__column">
<div>
<span>2 <i class="fa-solid fa-chevron-right fa-xs"></i></span>
</div>
</div>
</div>
</div>
</div>
</main>
<nav class="nav">
<ul class="nav__list">
<li class="nav__btn">
<a class="nav__link" href="friends.html">
<i class="fa-solid fa-user fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="chats.html">
<span class="nav__norification badge">1</span>
<i class="fa-regular fa-comment fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="find.html">
<i class="fa-solid fa-magnifying-glass fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="more.html">
<span class="nav__goal"></span>
<i class="fa-solid fa-ellipsis fa-2x"></i>
</a>
</li>
</ul>
</nav>
<div id="splash-screen">
<i class="fa-solid fa-comment"></i>
</div>
<div id="no-mobile">
<span>Your screen is too big ㅠㅠ</span>
</div>
<script src="https://kit.fontawesome.com/f7b1c4a12a.js" crossorigin="anonymous"></script>
</body>
</html>