Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions css/responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,27 @@

.nav-links {
flex-direction: column;
width: 100%;
/* width: 100%; */
height: 100vh;
justify-content: center;
background: #484872;
/* background: #484872; */
margin-top: -900px;
transition: all 0.5s ease;
transition: all 0.5s ease-in;
position: relative;
left: 45px;
}

.mobile-menu {
margin-top: 602px;
border-bottom-right-radius: 30%;
margin-top: 650px;
width: 380px;
/* border-bottom-right-radius: 30%; */
background: rgba(0, 0, 0,.5);
backdrop-filter: saturate(180%) blur(10px);
transition:all 0.5s ease-out ;
}



.nav-links li {
margin: 30px auto;
}
Expand Down
1 change: 1 addition & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ header {
position: absolute;
top: 30px;
right: 30px;
/* right:-160px; */
width: 40px;
cursor: pointer;
display: none;
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<nav class="navbar glass" style="height: 70px;">
<span><a href="#home" style="display:flex; align-items: center;"><img class="img2"src="https://drive.google.com/uc?export=view&id=18w44M_wq9TbQlwsK126yf8IAin4VxGiK" width="40"
style="margin: -25px -10px -25px -20px"><h1 class="logo">ADVENTURE</h1></a></span>
<ul class="nav-links">
<ul class="nav-links ">
<li><a href="#home" id="pri" class="active cir_border">Home</a></li>
<li><a href="#events" id="sec" class="cir_border">Tours</a></li>
<li><a href="#explore" id="tri" class="cir_border">Explore</a></li>
Expand All @@ -27,11 +27,11 @@
<li><a href="#contact" id="hex" class="cir_border">Contact</a></li>
<li><div>
<input type="checkbox" class="checkbox dark" id="checkbox">
<label for="checkbox" class="label">
<label for="checkbox" class="label">
<i class="fa fa-moon-o"></i>
<i class='fa fa-sun-o'></i>
<div class='ball'>
</label>
</label>
</div></li>
</ul>
<img src="./img/menu-btn.png" alt="" class="menu-btn">
Expand Down