Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made-payment-html-navbar-accessible #1196

Closed
wants to merge 1 commit into from
Closed
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
17 changes: 3 additions & 14 deletions payment.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ header {

.nav-container {
height: auto;
width: 200%;
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
Expand Down Expand Up @@ -217,15 +217,7 @@ header {
}


.hamburger {
height: 2rem;
width: 1.7rem;
display: flex;
justify-content: space-between;
flex-direction: column;
display: none;
transition: 0.2s;
}


.line {
height: 5px;
Expand All @@ -235,10 +227,7 @@ header {
}

@media screen and (max-width: 1220px) {
.hamburger {
display: flex;
cursor: pointer;
}


.navLinks {
position: absolute;
Expand Down
11 changes: 3 additions & 8 deletions payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,12 @@
<body>
<div class="nav-container" id="top">
<nav class="newNav">
<a href="#" class="nav__logo" data-aos="fade-right" style="margin-left: -200px">Tourguide<span>.</span></a>
<a href="#" class="nav__logo" data-aos="fade-right" style="margin-left: 0px">Tourguide<span>.</span></a>


<a href="index.html" class="contact-btn" style="margin-right: -170px;"><button class="btn" id="btn-style"
style="margin:0; box-shadow:1.5px 1.5px 6px red;" data-aos="fade-down">Go to Home</button></a>
<a href="index.html" class="contact-btn" style="margin-right: 100px;"><button class="btn" id="btn-style"
style="margin:0px; box-shadow:1.5px 1.5px 6px white ;" data-aos="fade-down">Go to Home</button></a>

<div class="hamburger" data-aos="fade-down">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
</div>

Expand Down
Loading