-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmore.html
More file actions
122 lines (121 loc) · 3.94 KB
/
more.html
File metadata and controls
122 lines (121 loc) · 3.94 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<script
src="https://kit.fontawesome.com/ec2d6007af.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="CSS/styles.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MORE - Cocoa CLone</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>13:00</span>
</div>
<div class="status-bar_column">
<span>120%</span>
<i class="fas fa-battery-full"></i>
<i class="fas fa-bolt fa-lg"></i>
</div>
</div>
<header class="screen-header">
<h1 class="screen-header__title">MORE</h1>
<div class="screen-header__icon">
<span><i class="fas fa-search fa-lg"></i></span>
<span><i class="fas fa-music fa-lg"></i></span>
<span><a href="settings.html"><i class="fas fa-cog fa-lg"></i></a></span>
<div class="reddot cog-within__dot"></div>
</div>
</header>
<main class="main-screen more-screen">
<div class="user-component">
<div class="user-component__column">
<img
src="img/user.file.jpg"
class="user-component__avatar user-component__avatar--xl"
/>
<div class="user-component__text">
<h4 class="user-componenet__title">BeeMOre</h4>
<h6 class="user-componenet__subtitle">
+82 10-4780-XXXX<i class="fas fa-exclamation-circle"></i>
</h6>
</div>
</div>
<div class="user-component__column">
<i class="far fa-comment-alt fa-2x"></i>
</div>
</div>
<div class="icon-row">
<div class="icon-row-icons">
<i class="far fa-calendar-alt"></i>
<span>Calender</span>
</div>
<div class="icon-row-icons">
<i class="far fa-smile-wink"></i>
<span>Emoticons</span>
</div>
<div class="icon-row-icons">
<i class="fas fa-palette"></i>
<span>Theme</span>
</div>
<div class="icon-row-icons">
<i class="far fa-comments"></i>
<span>Openchats</span>
</div>
</div>
<div class="more-suggestions">
<h4 class="more-suggestions__titile">Suggestion</h4>
<di class="more-suggestions__icons">
<div class="more-suggestions__icon">
<div class="more-suggestions__icon-image">
<i class="fas fa-quote-right"></i>
</div>
<span class="more-suggestions__icon-text">Kokoa story</span>
</div>
<div class="more-suggestions__icon">
<div class="more-suggestions__icon-image">
<img src="https://d4fodtu7cqfym.cloudfront.net/favicon/favicon-32x32.png" alt="">
</div>
<span class="more-suggestions__icon-text">TGD</span>
</div>
</div>
</div>
</main>
<nav class="nav">
<ul class="nav__list">
<li class="nav__btn">
<a class="nav__link" href="firends.html">
<i class="far fa-user fa-2x"></i>
</a>
</li>
<li class="nav__btn">
<a class="nav__link" href="chat.html">
<span class="nav__notification badge">1</span>
<i class="far 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__dot reddot"></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>
</body>
</html>