forked from bradtraversy/50projects50days
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Brad Traversy
committed
Nov 16, 2020
1 parent
4f77b76
commit 84649dd
Showing
3 changed files
with
168 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>Netflix Mobile Navigation</title> | ||
</head> | ||
<body> | ||
<button class="nav-btn open-btn"> | ||
<i class="fas fa-bars"></i> | ||
</button> | ||
|
||
<img src="https://logos-download.com/wp-content/uploads/2016/03/Netflix_logo.png" alt="Logo" class="logo"> | ||
|
||
<p class="text">Mobile Navigation</p> | ||
|
||
<div class="nav nav-black"> | ||
<div class="nav nav-red"> | ||
<div class="nav nav-white"> | ||
<button class="nav-btn close-btn"> | ||
<i class="fas fa-times"></i> | ||
</button> | ||
|
||
<img src="https://logos-download.com/wp-content/uploads/2016/03/Netflix_logo.png" alt="Logo" class="logo"> | ||
|
||
<ul class="list"> | ||
<li><a href="#">Teams</a></li> | ||
<li><a href="#">Locations</a></li> | ||
<li><a href="#">Life at Netflix</a></li> | ||
<li> | ||
<ul> | ||
<li><a href="#">Netflix culture memo</a></li> | ||
<li><a href="#">Work life balance</a></li> | ||
<li><a href="#">Inclusion & diversity</a></li> | ||
<li><a href="#">Blog</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const open_btn = document.querySelector('.open-btn') | ||
const close_btn = document.querySelector('.close-btn') | ||
const nav = document.querySelectorAll('.nav') | ||
|
||
open_btn.addEventListener('click', () => { | ||
nav.forEach(nav_el => nav_el.classList.add('visible')) | ||
}) | ||
|
||
close_btn.addEventListener('click', () => { | ||
nav.forEach(nav_el => nav_el.classList.remove('visible')) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap'); | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: 'Muli', sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
} | ||
|
||
.text { | ||
text-transform: uppercase; | ||
} | ||
|
||
.logo { | ||
width: 150px; | ||
} | ||
|
||
.nav-btn { | ||
border: none; | ||
background-color: transparent; | ||
cursor: pointer; | ||
font-size: 20px; | ||
} | ||
|
||
.open-btn { | ||
position: fixed; | ||
top: 10px; | ||
left: 10px; | ||
} | ||
|
||
.nav { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
height: 100vh; | ||
transform: translateX(-100%); | ||
transition: transform 0.3s ease-in-out; | ||
} | ||
|
||
.nav.visible { | ||
transform: translateX(0); | ||
} | ||
|
||
.nav-black { | ||
background-color: rgb(34, 31, 31); | ||
width: 60%; | ||
max-width: 480px; | ||
min-width: 320px; | ||
transition-delay: 0.4s; | ||
} | ||
|
||
.nav-black.visible { | ||
transition-delay: 0s; | ||
} | ||
|
||
.nav-red { | ||
background-color: rgb(229, 9, 20); | ||
width: 95%; | ||
transition-delay: 0.2s; | ||
} | ||
|
||
.nav-red.visible { | ||
transition-delay: 0.2s; | ||
} | ||
|
||
.nav-white { | ||
background-color: #fff; | ||
width: 95%; | ||
padding: 40px; | ||
position: relative; | ||
transition-delay: 0s; | ||
} | ||
|
||
.nav-white.visible { | ||
transition-delay: 0.4s; | ||
} | ||
|
||
.close-btn { | ||
opacity: 0.3; | ||
position: absolute; | ||
top: 40px; | ||
right: 30px; | ||
} | ||
|
||
.list { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.list li { | ||
margin: 20px 0; | ||
} | ||
|
||
.list li a { | ||
color: rgb(34, 31, 31); | ||
font-size: 14px; | ||
text-decoration: none; | ||
text-transform: uppercase; | ||
} | ||
|
||
.list ul { | ||
list-style-type: none; | ||
padding-left: 20px; | ||
} |