Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
Subhajit-2023-44 committed Oct 13, 2024
1 parent b667375 commit 0b0dc77
Showing 1 changed file with 40 additions and 26 deletions.
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

0 comments on commit 0b0dc77

Please sign in to comment.