-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmore.html
197 lines (190 loc) · 6.57 KB
/
more.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="stylesheet" href="styles/pages/more.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" />
<title>More | Netflix</title>
<script
src="https://kit.fontawesome.com/c888d5149c.js"
crossorigin="anonymous"
></script>
</head>
<body>
<main id="page-content">
<header class="status-bar">
<p class="status-bar__time">9:41</p>
<div class="status-bar__icons">
<img
src="assets/icons/cellular-connection.svg"
alt="Conexão Celular"
/>
<img src="assets/icons/wifi.svg" alt="Wifi" />
<img
class="status-bar__battery"
src="assets/icons/battery.svg"
alt="Bateria"
/>
</div>
</header>
<section class="profile-list">
<a class="profile-list__item profile-list__item">
<img
class="profile-list__img"
src="assets/images/profile1.png"
alt="Emenalo"
/>
<h2 class="profile-list__text">Emenalo</h2>
</a>
<a class="profile-list__item">
<img
class="profile-list__img"
src="assets/images/profile2.png"
alt="Emenalo"
/>
<h2 class="profile-list__text">Thelma</h2>
</a>
<a class="profile-list__item">
<img
class="profile-list__img"
src="assets/images/profile3.png"
alt="Emenalo"
/>
<h2 class="profile-list__text">Onyeka</h2>
</a>
<a class="profile-list__item">
<img
class="profile-list__img"
src="assets/images/profile-kids.png"
alt="Emenalo"
/>
<h2 class="profile-list__text">Kids</h2>
</a>
<a class="profile-list__item profile-list__item--add">
<img
class="profile-list__img"
src="assets/icons/plus-square.svg"
alt="Adicionar perfil"
/>
</a>
</section>
<button type="button" class="manage">
<img
class="manage__img"
src="./assets/icons/pencil.svg"
alt="Gerenciamento de perfis"
/>
<p class="manage__text">Manage Profiles</p>
</button>
<div class="share__background">
<section class="share">
<div class="share-title">
<img src="assets/icons/message.svg" alt="Fale com Amigos" />
<h1 class="share-title__text">Tell friends about Netflix.</h1>
</div>
<h2 class="share__subtitle">
Share this link so your friends can join the conversation around all
your favorite TV shows and movies.
</h2>
<a class="share__terms">Terms & Conditions</a>
<div class="share-copy">
<input
class="share-copy__input"
type="text"
value="https://www.netflix.com"
/>
<button class="share-copy__btn" type="button">Copy Link</button>
</div>
<div class="share-social">
<button class="share-social__btn">
<img
class="share-social__img"
src="assets/icons/whatsapp.svg"
alt="WhatsApp"
/>
</button>
<div class="share-social__divider"></div>
<button class="share-social__btn">
<img
class="share-social__img"
src="assets/icons/facebook.svg"
alt="Facebook"
/>
</button>
<div class="share-social__divider"></div>
<button class="share-social__btn">
<img
class="share-social__img"
src="assets/icons/gmail.svg"
alt="Gmail"
/>
</button>
<div class="share-social__divider"></div>
<button class="share-social__btn share-social__btn--more">
<img
class="share-social__img"
src="assets/icons/three-dots.svg"
alt="Mais"
/>
More
</button>
</div>
</section>
</div>
<section class="settings">
<div class="settings-check">
<a class="settings-check__text" href="#">
<img src="assets/icons/check.svg" alt="Minha Lista" />
My List</a
>
</div>
<ul class="settings__list">
<a class="settings__link" href="#"> <li>App Settings</li> </a
><a class="settings__link" href="#"> <li>Account</li> </a
><a class="settings__link" href="#"> <li>Help</li> </a
><a class="settings__link" href="#"> <li>Sign Out</li> </a>
</ul>
</section>
<div class="bottom-navbar__background">
<nav class="bottom-navbar">
<a href="home.html" class="bottom-navbar__button">
<img src="assets/icons/home.svg" alt="Home" />
<p class="bottom-navbar__text">Home</p>
</a>
<a href="search.html" class="bottom-navbar__button">
<img src="assets/icons/search.svg" alt="Pesquisa" />
<p class="bottom-navbar__text">Search</p>
</a>
<a
href="coming-soon.html"
data-notification="4"
class="bottom-navbar__button bottom-navbar__button--notification"
>
<img src="assets/icons/coming-soon.svg" alt="Em Breve" />
<p class="bottom-navbar__text">Coming Soon</p>
</a>
<a href="downloads.html" class="bottom-navbar__button">
<img src="assets/icons/downloads.svg" alt="Downloads" />
<p class="bottom-navbar__text">Downloads</p>
</a>
<a href="more.html" class="bottom-navbar__button">
<img src="assets/icons/more-active.svg" alt="Mais" />
<p class="bottom-navbar__text bottom-navbar__text--active">More</p>
</a>
</nav>
</div>
</main>
<div class="max-resolution">
<p class="max-resolution__text">
Opa, sua resolução de tela está muito grande!
</p>
<p class="max-resolution__text max-resolution__text--tablet">
Parece que você está usando um TABLET, tente acessar no celular
</p>
<p class="max-resolution__text max-resolution__text--desktop">
Parece que você está usando um NOTEBOOK, tente acessar no celular
</p>
</div>
</body>
</html>