Skip to content

Commit

Permalink
Merge pull request #1384 from Nishakulkarni06/broken-links
Browse files Browse the repository at this point in the history
added some broken links
  • Loading branch information
apu52 authored Dec 15, 2024
2 parents 4c3c496 + 19eb6ab commit 42632b3
Show file tree
Hide file tree
Showing 4 changed files with 273 additions and 79 deletions.
42 changes: 42 additions & 0 deletions RateUs.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,35 @@

}

.hamburger {
display: none;
cursor: pointer;
}

.hamburger i {
color: white;
font-size: 24px;
}

@media (max-width: 1000px) {
.hamburger {
color: white;
display: block;
margin-left: auto;
margin-right: 2rem;
}

.nav-cont{
display: none;
}

.nav-cont.active {
display: flex;
flex-direction:column;
align-items: center;
}
}

.stargaze {
top: 50%;
left: 50%;
Expand Down Expand Up @@ -211,13 +240,16 @@

<body>
<div class="navbar">

<div class="nav-cont" id="nav-cont">
<div class="nav-wrapper">
<a id="aid" class="nav-link" href="./index.html">
<i class="fas fa-home"></i> Home
</a>
<a id="aid" class="nav-link" href="./about.html">
<i class="fas fa-info-circle"></i> About
</a>

<a id="aid" class="nav-link" href="./contact.html">
<i class="fas fa-envelope"></i> Contact
</a>
Expand All @@ -229,6 +261,10 @@
</a>
</div>
</div>
<div class="hamburger" onclick="toggleMenu()">
<i class="fas fa-bars"></i>
</div>
</div>
<div class="stargaze">
<video autoplay loop muted playsinline>
<source src="./assets/main.webm" type="video/webm">
Expand Down Expand Up @@ -349,6 +385,12 @@
}).showToast();
}
});

function toggleMenu() {
const navMenu = document.getElementById('nav-cont');
navMenu.classList.toggle('active');
}

</script>
</body>

Expand Down
6 changes: 5 additions & 1 deletion contributor.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,11 @@
.container {
display: flex;
align-items: center;
background-color: rgba(75, 69, 69, 0.528);
flex-direction: row;
margin-top: 0;
color: white;
height: 5rem;
justify-content: space-evenly;
margin-bottom: 5rem;
}
Expand Down Expand Up @@ -318,7 +322,7 @@
<div class="container" id="nav-menu">
<div class="radio-wrapper">
<div class="btn">
<a id="aid" class="nav-link" href="index.html">
<a id="aid" class="nav-link white-text" href="index.html" style="color: white;">
<i class="fas fa-home"></i> Home
</a>
<label class="number"></label>
Expand Down
Loading

0 comments on commit 42632b3

Please sign in to comment.