x
1
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet' type='text/css'/>
2
3
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js' type='text/javascript'></script>
4
5
<style>
6
.dark {
7
visibility: hidden;
8
opacity: 0;
9
background: rgba(0, 0, 0, .3);
10
left: 0;
11
right: 0;
12
margin: 0;
13
position: fixed;
14
bottom: 0;
15
top: 0
16
}
17
.dark.shows {
18
visibility: visible;
19
opacity: 1
20
}
21
.menu-toogle {
22
cursor: pointer;
23
width: 60px;
24
height: 35px;
25
position: fixed;
26
top: 6px;
27
left: 0;
28
margin: 4px 15px;
29
z-index: 10
30
}
31
.menu-toogle div {
32
width: 29px;
33
height: 3px;
34
background: #aaa;
35
margin: 5px 0;
36
transition: all 0.35s;
37
border-radius: 0
38
}
39
.on .line_one {
40
background: #111;
41
-webkit-transform: rotate(45deg) translate(8px, 3px);
42
-moz-transform: rotate(45deg) translate(8px, 3px);
43
-ms-transform: rotate(45deg) translate(8px, 3px);
44
-o-transform: rotate(45deg) translate(8px, 3px);
45
transform: rotate(45deg) translate(8px, 3px);