Skip to content
Product
Solutions
Open Source
Pricing
Search
Sign in
Sign up
sefyudem
/
Responsive-And-Animated-Navbar-With-Multi-level-Drodown
Public
Code
Issues
1
Pull requests
Actions
Projects
Security
Insights
Responsive-And-Animated-Navbar-With-Multi-level-Drodown/style.css
@sefyudem
sefyudem Add files via upload
Latest commit 235d0e9 on Jun 1, 2020
 History
 1 contributor
446 lines (376 sloc)  7.7 KB

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{

font-family: Arial, Helvetica, sans-serif;
    overflow: scroll;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}


.textarea {
 width: 100%;
 height: 25px;
 background-color: #49be4a;
 font-size: 1em;
 font-weight: bold;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 border: 0px solid black;
 resize: none;
}


.button {
  background-color: #fff;
  color: black; 
  border: 2px solid #49be4a;
  padding: 3px 13px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 0px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button:hover {
  background-color: #49be4a; /* Green */
  color: white;
  border: 2px solid #49be4a;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #49be4a;
   color:#fff;
   height:30px;
   line-height:30px;
   text-align: center;
       z-index: 1000;
}

header{
    position: sticky;
    top: 0px;
    background-color: #fff;
    width: 100%;
    height: 100px;
    z-index: 1000;
}


section{
    position: relative;
    height: calc(100vh - 3rem);
    width: 100%;
    background: url('bg.jpg') no-repeat top center / cover;
    overflow: hidden;
}

.overlay{

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(100, 100, 100, 0.0);
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 50px;
  padding-left: 20px;
  
  margin: auto;
  width: 80%;
  border: 0px;

}

.container{
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
    display: flex;
    position: relative;
    background-color: rgb(98, 98, 98, 0.0); 
    z-index: 1;
    letter-spacing: 0.1em;
        font-size: 1.5rem;
}

.logo-container{
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
            height: 100px;
}

.top-container{
    max-width: 275rem;
    padding: 0 1rem;
        height: 5px;
    margin: 0 auto;
    display: flex;
    position: relative;
    background-color: #49be4a;    
}

.divider-line{
    max-width: 275rem;
    padding: 0 1rem;
        height: 5px;
    margin: 0 auto;
    display: flex;
    position: relative;
    background-color: #49be4a;    
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
 
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #000;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #000;
    color: #fff;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #000;
}

.nav-links > ul{
    margin-top: 3.0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #000;
    padding: 0 1.8rem;
    letter-spacing: .1px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    text-decoration: none;
}

.nav-link > a > i{
    margin-left: 1.0rem;
}

.nav-link:hover > a{
    transform: scale(1.);
    color: #49be4a;  
    text-decoration: none;   
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 23rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #000;
    padding: .4rem 1rem;
    font-size: 1.4rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    text-decoration: none;
}

.dropdown-link:hover > a{
    background-color: #49be4a;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #fff;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 8px;
    height: 8px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #fff;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 80%;
    padding-left: .1rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #000;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 12rem;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: .5rem .5rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color: #fff;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #fff;
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #000;
        padding: .5rem .5rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: .5rem 1rem .5rem 1rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #fff;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #49be4a;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #49be4a;
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #49be4a;
    }

    .nav-link > a > i{
        font-size: .9rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: .9rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
    

}
Footer

.container-1{
    max-width: 100%;
    padding: 0 0rem;
    margin: 0 auto;
    display: flex;
    position: relative;
    background-color: #fff; 
    z-index: 1;
    letter-spacing: 0.0em;
}

.header-2{
    max-width: 100%;
    padding: 0 0rem;
        height: 180px;
    margin: 0 auto;
    display: flex;
    position: relative;
    background-color: #fff;    
}
.spacing{
    max-width: 100%;
        height: 220px;   
}

/* unvisited link */
a:link {
    color: #000;
}

/* mouse over link */
a:hover {
    color: #49be4a;
    text-decoration: none;
}