Skip to content

Commit

Permalink
sasa
Browse files Browse the repository at this point in the history
  • Loading branch information
panzerweb committed Jun 4, 2024
1 parent 83333cf commit 092541e
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
32 changes: 32 additions & 0 deletions Hero/responsivehero.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,4 +260,36 @@
}


}


/* Same to all devices above 767px for a Navigational Bar */
@media only screen and (min-width: 768px){

#offcanvasNavbar{
background: var(--primary-color);
transition: all 0.5s ease-in-out;
font-family: "League Spartan", sans-serif;
width: 100%;

}

#offcanvasNavbar a span{
color: var(--secondary-color);
}

#offcanvasNavbar .nav-item ul li a{
color: #000;
}

#offcanvasNavbar ul li a{
font-size: 1.2rem;
color: var(--secondary-color);
}


#offcanvasNavbar.scrolled {
background-color: #727272af;
--secondary-color: #FBFEF9;
}
}
6 changes: 5 additions & 1 deletion Profile Page/responsiveprofile.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,14 @@

}

@media only screen and (min-width: 768px){
/* Tablet Devices */
@media only screen and (min-width: 768px) and (max-width: 991px){
#ul-nav{
justify-content: flex-start !important;
}
}

@media only screen and (min-width: 768px){

#offcanvasNavbar{
background: var(--primary-color);
Expand Down

0 comments on commit 092541e

Please sign in to comment.