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

Navbar Fixing on Features page #734

Merged
merged 2 commits into from
Oct 14, 2024
Merged
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
80 changes: 9 additions & 71 deletions features.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@

.menu ul li {
display: inline;
margin-right: 10px;
margin-right: 7px;
}

.menu ul li a {
Expand Down Expand Up @@ -376,7 +376,7 @@
background-color: #2980b9;
color: white;
border: none;
padding: 10px 15px;
padding: 9px 10px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
Expand All @@ -401,66 +401,9 @@
.buttons {
display: flex;
align-items: center;
gap: 10px;
}

</style>


/* Logo Animation */
@keyframes logoAnimation {
0% {
opacity: 0;
transform: translateX(-100px);
/* Start from the left */
}

50% {
transform: translateX(10px);
/* Move slightly to the right */
}

100% {
opacity: 1;
transform: translateX(0);
/* End at original position */
}
}

footer {
background-color: #C4D7FF;
color: white;
text-align: center;
padding: 10px 0;
/* Padding for the footer */

}

/* Letter Drop Animation */
@keyframes letterDrop {
0% {
transform: translateY(-100%);
opacity: 0;
}

50% {
transform: translateY(10px);
/* Slight bounce */
opacity: 1;
}

100% {
transform: translateY(0);
}
}

#thankYouMessage {
margin-top: 20px;
font-size: 18px;
color: green;
display: none;
/* Initially hidden */
gap: 8px;
}

</style>

</head>
Expand Down Expand Up @@ -501,16 +444,13 @@

<nav class="menu">
<ul>
<li><a href="index.html" id="home-link" onclick="changeContent('home')"><i class="fa-solid fa-house"></i>
<li><a href="index.html" id="home-link" onclick="changeContent('home')">
Home</a></li>
<li><a href="features.html" id="features-link" onclick="changeContent('features')"><i
class="fa-solid fa-file"></i> Features</a></li>
<li><a href="team.html" id="team-link" onclick="changeContent('team')"><i class="fa-solid fa-user-group"></i>
<li><a href="features.html" id="features-link" onclick="changeContent('features')"> Features</a></li>
<li><a href="team.html" id="team-link" onclick="changeContent('team')">
Team</a></li>
<li><a href="contact.html" id="contact-link" onclick="changeContent('contact')"><i
class="fa-solid fa-phone"></i> Contact</a></li>
<li><a href="Feedback.html" id="feedback-link" onclick="changeContent('feedback')"><i
class="fa-solid fa-clipboard"></i> Feedback</a></li>
<li><a href="contact.html" id="contact-link" onclick="changeContent('contact')">Contact</a></li>
<li><a href="Feedback.html" id="feedback-link" onclick="changeContent('feedback')"> Feedback</a></li>
</ul>
</nav>
<div class="buttons">
Expand All @@ -522,8 +462,6 @@
<button class="light-dark-btn dark-mode-toggle" id="dark-mode-toggle">
<i class="fa-solid fa-moon"></i>
</button>
<a href="login.html" class="login">Log in</a>
<a href="up.html" class="get-started">Get started</a>

</div>
</div>
Expand Down
Loading