forked from rebillar/site-accueil-insa
38 lines
672 B
CSS
38 lines
672 B
CSS
|
#hamburger {
|
||
|
display: inline-block;
|
||
|
cursor: pointer;
|
||
|
z-index: 2;
|
||
|
color: white;
|
||
|
font-size: 32px;
|
||
|
margin: 5px;
|
||
|
}
|
||
|
|
||
|
.bar1, .bar2, .bar3 {
|
||
|
width: 35px;
|
||
|
height: 5px;
|
||
|
background-color: #fff;
|
||
|
margin: 6px 0;
|
||
|
transition: 0.4s;
|
||
|
box-shadow: 1px 1px 3px #333;
|
||
|
}
|
||
|
|
||
|
/* Rotate first bar */
|
||
|
|
||
|
.change .bar1 {
|
||
|
-webkit-transform: rotate(-45deg) translate(-9px, 6px);
|
||
|
transform: rotate(-45deg) translate(-9px, 6px);
|
||
|
}
|
||
|
|
||
|
/* Fade out the second bar */
|
||
|
|
||
|
.change .bar2 {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
/* Rotate last bar */
|
||
|
|
||
|
.change .bar3 {
|
||
|
-webkit-transform: rotate(45deg) translate(-8px, -8px);
|
||
|
transform: rotate(45deg) translate(-8px, -8px);
|
||
|
}
|