-
Notifications
You must be signed in to change notification settings - Fork 0
/
more.html
110 lines (110 loc) · 5.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
<!DOCTYPE html>
<html lang="en">
<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>Netflix | More</title>
</head>
<body>
<main class="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 de Celular">
<img src="./assets/icons/wifi.svg" alt="WiFi">
<img src="./assets/icons/battery.svg" alt="Bateria">
</div>
</header>
<section class="profile">
<a href="home.html" class="profile__group">
<img class="profile__img" src="/assets/images/login-profile01.png" alt="Perfil 1">
<h2 class="profile__text">Mr. Santos</h2>
</a>
<a href="home.html" class="profile__group">
<img class="profile__img" src="/assets/images/login-profile02.png" alt="Perfil 2">
<h2 class="profile__text">Hugo</h2>
</a>
<a href="home.html" class="profile__group">
<img class="profile__img" src="/assets/images/login-profile03.png" alt="Perfil 3">
<h2 class="profile__text">Victor</h2>
</a>
<a href="home.html" class="profile__group">
<img class="profile__img" src="/assets/images/login-profile-kids.png" alt="Perfil 4">
<h2 class="profile__text">Kids</h2>
</a>
<img class="profile__img" src="/assets/icons/login-add-profile.svg" alt="Adicionar Perfil">
</section>
<div class="manage">
<img src="/assets/icons/pencil.svg" alt="Gerenciar Perfis">
<p class="manage__text">Manage Profiles</p>
</div>
<section class="share__background">
<div class="share">
<div class="share-title">
<img src="/assets/icons/share.svg" alt="Compartilhe">
<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>
<p class="share__terms">Terms & Conditions</p>
<div class="share-copy">
<input class="share-copy__input" type="text" placeholder="https://www.netflix.com">
<button class="share-copy__btn">Copy Link</button>
</div>
<div class="share-social">
<img class="share-social__img" src="/assets/icons/whatsapp.svg" alt="Whats App">
<div class="share-social__division">|</div>
<img class="share-social__img" src="/assets/icons/fb.svg" alt="Facebook">
<div class="share-social__division">|</div>
<img class="share-social__img" src="/assets/icons/gmail.svg" alt="Gmail">
<div class="share-social__division">|</div>
<div class="share-social-more">
<img class="share-social__img" src="/assets/icons/dots-white.svg" alt="Mais">
<h2 class="share-social-more__text">More</h2>
</div>
</div>
</div>
</section>
<section class="settings">
<div class="settings-check">
<img class="settings-check__img" src="/assets/icons/check-my-list.svg" alt="Minha Lista">
<p class="settings-check__text">My List</p>
</div>
<p class="settings__text">App Settings</p>
<p class="settings__text">Account</p>
<p class="settings__text">Help</p>
<p class="settings__text">Sign Out</p>
</section>
<nav class="bottom-navbar__background">
<div class="bottom-navbar">
<a href="home.html" class="bottom-navbar__icon">
<img src="/assets/icons/home.svg" alt="Home">
<p class="bottom-navbar__text">Home</p>
</a>
<a href="search.html" class="bottom-navbar__icon">
<img src="/assets/icons/search.svg" alt="Pesquisa">
<p class="bottom-navbar__text">Search</p>
</a>
<a href="coming-soon.html" class="bottom-navbar__icon">
<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__icon">
<img src="/assets/icons/downloads.svg" alt="Baixados">
<p class="bottom-navbar__text">Downloads</p>
</a>
<a href="more.html" class="bottom-navbar__icon">
<img src="/assets/icons/more-enlighted.svg" alt="Mais">
<p class="bottom-navbar__text bottom-navbar__text--active">More</p>
</a>
</div>
</nav>
</main>
<section class="max-resolution">
<p class="max-resolution__text max-resolution__text--tablet">Parece que sua resolução é a de um Tablet!</p>
<p class="max-resolution__text max-resolution__text--notebook">Parece que sua resolução é a de um Notebook!</p>
<p class="max-resolution__text">Tente acessar em um celular.</p>
</section>
</body>
</html>