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

Fixed misalignment of Buttons in Navbar issue ! #431 #500

Merged
merged 1 commit into from
Oct 13, 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
66 changes: 40 additions & 26 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Retro</title>



<style>
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav {
margin-top: -9px; /* Add this line */
}
}
</style>

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="/Css-files/navbarstyles.css">
Expand All @@ -34,21 +41,26 @@
<link href="https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">

<link rel="stylesheet" href="./style.css">

<style>

.retro-heading {
font-family: var(--ff-philosopher);
color: brown;

font-family: var(--ff-philosopher);
color: brown;
z-index: 99;
transition: all 0.3s ease;
}
transition: all 0.3s ease;

.retro-heading:hover {
color: #5d095c;
text-shadow: 0 0 15px rgba(214, 30, 171, 0.9), 0 0 30px rgba(138, 38, 88, 0.7);
transform: scale(1.3);
}

.retro-heading:hover {

color: #5d095c;
text-shadow: 0 0 15px rgba(214, 30, 171, 0.9), 0 0 30px rgba(138, 38, 88, 0.7);
transform: scale(1.3);

}

.faq-container {
margin-top: 50px;
margin-left: auto;
Expand Down Expand Up @@ -98,24 +110,26 @@
display: none;
}
</style>
<style>
<style>
/*Preloader CSS*/
#preloader {

position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: hsl(20, 43%, 93%); /* Light background color */
display: flex;
justify-content: center;
align-items: center;
transition: opacity 2s ease-out, visibility 2s ease-out;
opacity: 1;
visibility: visible;
z-index: 9999; /* Ensure the preloader is above all other content */
}
display: flex;
justify-content: center;
align-items: center;
transition: opacity 2s ease-out, visibility 2s ease-out;
opacity: 1;
visibility: visible;
z-index: 9999; /* Ensure the preloader is above all other content */

}


/* When hidden, preloader transitions out */
#preloader.hidden {
Expand Down