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

Make NavBar responsive for Mobile View #508

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
61 changes: 60 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,65 @@ hr {

/******about end ******** */


/********Section-Sharpen your skills starts*********/
.skills-section table {
Copy link
Collaborator

Choose a reason for hiding this comment

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

all these styles are removed in master repo sync with 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 not resolved.

Copy link
Collaborator

Choose a reason for hiding this comment

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

NOT RESOLVED!!

border-collapse: collapse;
border-spacing: 0;
width: 90%;
border: 1px solid #ddd;
/* align: centre; */
}

.skills-section th:hover {
cursor: pointer;
background-color: #27d8a3;
}

.skills-section th,
td {
text-align: left;
padding: 30px;
font-weight: bold;
font-size: 20px;
text-shadow: 2px 2px #0000;
}

.skills-section a {
color: #05272e;
}

.skills-section tr:nth-child(odd) th {
background-color: #49b1ad;
}
.skills-section tr:nth-child(odd) th:hover{
background-color: #1e918d;
transition-delay: 100ms;
border-top: 2px solid #0c3b3a;
}
.skills-section tr:nth-child(even) th:hover{
background-color: #a6adad;
transition-delay: 100ms;
border-top: 2px solid #0c3b3a;
}

.skills-section hr {
border: 0.5px solid #49b1ad;
display: block;
width: 80px;
margin: auto;
}
.skills-section h1 {
font-size: 50px;
font-weight: bold;
backdrop-filter: blur(20px);
}
.span {
display: block;
margin-bottom: 10em;
}
/*********Section-Sharpen your skills ends**********/

/*********FAQ section starts**********/
.fnq h1 {
font-size: 50px;
Expand Down Expand Up @@ -1283,7 +1342,7 @@ font-weight: 500;
transform: scale(0.8);
background-color: #3caea3;
}

.books{
margin-top: 78px;
}

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<header class="fix">
<img src="video/background.gif" class="vid-bg" alt="background-gif">
<nav id="nav" class="navbar navbar-expand-lg navbar-dark fixed-top top nav-col">
<a class="navbar-brand" href="#"><img src="images/icon.png" alt="Algo Phantoms" width="50" height="50"><strong><span class="brand1">Algo</span>Phantoms</strong></a>
<a class="" href="#"><img src="images/icon.png" alt="Algo Phantoms" width="50" height="50"><strong><span class="brand1">Algo</span>Phantoms</strong></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand Down