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

feat: Remove Overflow Hidden and Enhance Navbar Styling #1009

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion newplantrip.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h1>Tour Planner</h1>
<input type="date" id="endDate" name="endDate" required>

<label for="budget">Budget:</label>
<input type="number" id="budget" name="budget" required>
<input min="0" type="number" id="budget" name="budget" required>

<label for="accommodation">Accommodation:</label>
<select id="accommodation" name="accommodation">
Expand Down
20 changes: 18 additions & 2 deletions newplantripstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

html, body {
height: 100%;
overflow: hidden;
/* overflow: hidden; */
}

.navbar {
Expand Down Expand Up @@ -41,24 +41,40 @@ html, body {
.nav-links {
display: flex;
align-items: center;
gap: 1.3rem;
}

li {
list-style: none;
display: inline-block;
margin-bottom: 20px;
}

li a {
font-size: 1.75rem;
margin-right: 50px;
font-weight: bold;
color: black;
transition: color 0.3s ease;
cursor: pointer;
}

li a:hover {
color: #fff; /* Change link color on hover */
}

.nav-button a {
padding: 10px;
padding: 3px 10px;
border-radius: 10px;
background-color: black;
color: white;
transition: background-color 0.3s ease;
cursor: pointer;
margin-bottom: 20px;
}

.nav-button a:hover {
background-color: #444; /* Change button color on hover */
}

.burger-menu {
Expand Down
Loading