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

CONTACT button make same as to other navbar items #94

Closed
wants to merge 1 commit into from
Closed
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
CONTACT button make same as to other navbar items
VAIBHAVBABELE committed Jan 8, 2025
commit b3d3219fe8ee84e77eee0c8094096c2429b2f921
3 changes: 2 additions & 1 deletion counting.html
Original file line number Diff line number Diff line change
@@ -30,8 +30,9 @@
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="#" >Contact</a></li>
</ul>
<a href="#" class="btn-contact">Contact</a>

</nav>
</header>
<div class="game-container"></div>
3 changes: 2 additions & 1 deletion countingpage.html
Original file line number Diff line number Diff line change
@@ -147,8 +147,9 @@
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="btn-contact">Contact</a>

</nav>
</header>

3 changes: 2 additions & 1 deletion feedback.html
Original file line number Diff line number Diff line change
@@ -29,8 +29,9 @@
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="#" >Contact</a></li>
</ul>
<a href="#" class="btn-contact">Contact</a>

</nav>
</header>
<div class="main-section">
2 changes: 1 addition & 1 deletion footercss.css
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
padding-top: 0.5rem;
border-top: 1px solid #ddd;
font-size: 0.9rem;
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@
</ul>
</li>
<li><a href="login.html">Login</a></li>
<a href="#" class="btn-contact">Contact</a>
<li><a href="#" >Contact</a></li>
</ul>
<div class="toggle-menu">☰</div>
</nav>
3 changes: 2 additions & 1 deletion login.html
Original file line number Diff line number Diff line change
@@ -30,8 +30,9 @@
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="#" >Contact</a></li>
</ul>
<a href="#" class="btn-contact">Contact</a>

</nav>
</header>
<div class="wrapper">
3 changes: 2 additions & 1 deletion signup.html
Original file line number Diff line number Diff line change
@@ -30,8 +30,9 @@
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="btn-contact">Contact</a>

</nav>
</header>
<div class="wrapper">
17 changes: 0 additions & 17 deletions styles.css
Original file line number Diff line number Diff line change
@@ -122,24 +122,7 @@ nav {
background-color: #f1f1f1;
}

.btn-contact {
background-color: white;
color: black;
padding: 15px 30px;
border: 3px solid black;
border-radius: 0;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
text-decoration: none;
}

.btn-contact:is(:focus, :hover) {
background-color: #e5a186;
border-color: #e5a186;
color: white;
transform: scale(1.1);
}

/* Hero Section */
.hero {