-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchats.html
95 lines (90 loc) · 3.26 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
<!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" />
<link rel="stylesheet" href="./css/main.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/c1651245ed.js" crossorigin="anonymous"></script>
<title>대화창 페이지</title>
</head>
<body>
<div class="status-bar">
<div class="status-bar__time">
<span>11:09</span>
</div>
<div class="status-bar__device">
<div class="signal">
<div class="signal__first"></div>
<div class="signal__second"></div>
<div class="signal__third"></div>
<div class="signal__fourth"></div>
</div>
<i class="ri-wifi-fill ri-xl"></i>
<i class="ri-battery-charge-fill ri-xl"></i>
</div>
</div>
<header class="logo-header">
<a href="./chats.html" class="logo-header__link">
<h1>대화방</h1>
</a>
<div class="logo-header__icons">
<a href="#" class="logo-header__link">
<i class="fa-solid fa-magnifying-glass fa-xl"></i>
</a>
<!-- <a href="./chats.html" class="logo-header__link">
<i class="fa-regular fa-comment fa-xl"></i>
<span>+</span>
</a> -->
<a href="#" class="logo-header__link">
<i class="fa-solid fa-music fa-xl"></i>
</a>
<a href="./setting.html" class="logo-header__link">
<i class="fa-solid fa-gear fa-xl"></i>
</a>
</div>
</header>
<main class="friends-main">
<a href="./chatroom.html">
<section class="user-component">
<div class="user-component__main">
<img src="./img/avatar.png" class="user-component__avatar user-component__avatar--big" />
<div class="user-component__text">
<span class="user-component__name">어피치</span>
<span class="user-component__message">안녕!</span>
</div>
</div>
<div class="user-component__info user-component__info--vertical">
<span>11:08</span>
<span class="notification__number notification__number--chat">1</span>
</div>
</section>
</a>
</main>
<footer class="footer-bar">
<a href="./friends.html" class="footer-bar__link">
<i class="fa-solid fa-user fa-2x"></i>
</a>
<a href="./chats.html" class="footer-bar__link">
<i class="fa-regular fa-comment fa-2x"></i>
<span class="notification__number">1</span>
</a>
<a href="./find.html" class="footer-bar__link">
<i class="fa-solid fa-magnifying-glass fa-2x"></i>
</a>
<a href="./more.html" class="footer-bar__link">
<i class="fa-solid fa-ellipsis fa-2x"></i>
<div class="notification__dot"></div>
</a>
</footer>
<div id="no-mobile">
<img value="cover" src="./img/notice.png" />
<div class="no-mobile__text">
<span> 화면의 크기가 너무 커요 </span>
<br />
<span> 웹 페이지 크기를 줄여주세요. </span>
</div>
</div>
</body>
</html>