Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Created June 3, 2022 02:41
Show Gist options
  • Save tararoutray/0cad42cd5e7c8abf6f9ab3077e6217f7 to your computer and use it in GitHub Desktop.
Save tararoutray/0cad42cd5e7c8abf6f9ab3077e6217f7 to your computer and use it in GitHub Desktop.
.sidebar {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #2b9348;
overflow-x: hidden;
padding-top: 60px;
transition: 0.5s;
}
.sidebar a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 1.4rem;
color: #fff;
display: block;
transition: 0.3s;
}
.sidebar a:hover {
color: #f1f1f1;
}
.sidebar .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.openbtn {
font-size: 1rem;
cursor: pointer;
background-color: #2b9348;
color: white;
padding: 10px 15px;
border: none;
}
.openbtn:hover {
background-color: #2b9348;
}
#main {
transition: margin-left 0.5s;
padding: 20px;
}
@media screen and (max-height: 450px) {
.sidebar {
padding-top: 15px;
}
.sidebar a {
font-size: 18px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment