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

solving issue of different navbars #366

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
15 changes: 15 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,21 @@ hr {
width: 90px;
margin: auto;
}
.hr{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Few styles are conflicting with the hr tag styles look into it.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still present.

border: 1px solid #3caea3;
border-radius: 5px;
display: block;
width: 20%;
margin: auto;
}
.nav-item:hover hr:nth-child(2){
border-bottom: 1px solid #3caea3;
harikesh409 marked this conversation as resolved.
Show resolved Hide resolved
display: block;
width: 30%;
/* margin-left:auto;*/
harikesh409 marked this conversation as resolved.
Show resolved Hide resolved
margin-left: 2.65rem;
padding-right: 2rem !important;
}

harikesh409 marked this conversation as resolved.
Show resolved Hide resolved


Expand Down
5 changes: 5 additions & 0 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,25 @@
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link font-weight-bold nav-items" href="index.html">Home </a>
<hr class="hr">
harikesh409 marked this conversation as resolved.
Show resolved Hide resolved
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold nav-items" href="index.html#about">About</a>
<hr class="hr">
</li>

<li class="nav-item">
<a class="nav-link font-weight-bold nav-items" href="#team">Team<span
class="sr-only">(current)</span></a>
<hr class="hr">
</li>

<li class="nav-item dropdown">
<a class="nav-link font-weight-bold nav-items dropdown-toggle" href="#" id="navbarDropdown"
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
More
</a>
<hr class="hr">
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="DSA.html">RoadMap to your DSA</a>

Expand All @@ -79,6 +83,7 @@
</div>
<li class="nav-item">
<a class="nav-link font-weight-bold nav-items" href="#footer">Contact</a>
<hr class="hr">
</li>
</ul>

Expand Down