Created
August 21, 2018 02:24
-
-
Save ganeshaampuh/b082e980b3863c698812de96e8fc2de3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.rghtblck ul li:nth-child(4) h4 { | |
display: none; | |
} | |
.rghtblck ul li:nth-child(1), | |
.rghtblck ul li:nth-child(2), | |
.rghtblck ul li:nth-child(3) { | |
opacity: 0; | |
} | |
#burger { | |
width: 100px; | |
height: 50px; | |
display: flex; | |
border: 1px solid #f85319; | |
justify-content: center; | |
flex-direction: row; | |
align-items: center; | |
color: #f85319; | |
font-weight: bold; | |
margin: auto; | |
margin-bottom: 5px; | |
padding-left: 9px; | |
cursor: pointer; | |
} | |
#burger div { | |
flex-basis: 50%; | |
display: flex; | |
justify-content: center; | |
height: 100%; | |
align-items: center; | |
} | |
#burger .wrapper { | |
flex-basis: 50%; | |
height: 100%; | |
justify-content: center; | |
align-items: center; | |
display: flex; | |
flex-direction: column; | |
} | |
#burger span { | |
height: 2px; | |
background: #f85319; | |
display: block; | |
margin: 2px 0; | |
width: 55%; | |
} | |
@media(max-width: 991px) { | |
.rghtblck ul li:nth-child(1), .rghtblck ul li:nth-child(2), .rghtblck ul li:nth-child(3) { | |
display: none; | |
} | |
} | |
@media(max-width: 641px) { | |
.rghtblck { | |
margin-top: unset!important; | |
} | |
.rghtblck ul li { | |
margin-right: 0!important; | |
} | |
.logo_container { | |
margin-top: 0!important; | |
} | |
.et_header_style_centered #logo { | |
margin-bottom: 10px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment