-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (83 loc) · 1.85 KB
/
style.css
File metadata and controls
94 lines (83 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
*{
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
}
li{
list-style: none;
}
.hamburger-menu{
position: relative;
}
.hamburger-menu input[type="checkbox"]{
display: block;
position: absolute;
top: 15px;
left: 5px;
width: 40px;
height: 32px;
z-index: 5;
opacity: 0;
}
.hamburger-lines{
width: 40px;
height: 32px;
position: absolute;
top: 19px;
left: 7px;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.hamburger-lines .line{
display: block;
height: 4px;
width: 100%;
background: #232323;
border-radius: 10px;
}
/* 1.) state check karni aani chahiye */
/* 1.) agar check box clicked hai to select krna hai menu items */
.menu-items{
padding-top: 100px;
transform: translateX(-110%);
transition: transform 0.4s ease-in-out;
padding-left: 18px;
padding-bottom: 20px;
background: #232323;
color: #fff;
margin-top: -15px;
margin-left: -15px;
max-width: 400px;
width: 90%;
}
.menu-items li{
margin-bottom: 2rem;
font-size: 1.5rem;
}
.hamburger-menu input[type="checkbox"]:checked ~ .menu-items{
/* display: block; */
transform: translateX(0%);
}
.hamburger-menu input[type="checkbox"]:checked ~ .hamburger-lines .line{
background: #fff;
}
.hamburger-lines .line1{
transform-origin: 0% 0%;
transition: transform 0.3s ease-in-out;
}
.hamburger-lines .line3{
transform-origin: 0% 100%;
transition: transform 0.3s ease-in-out;
}
.hamburger-menu input[type="checkbox"]:checked ~ .hamburger-lines .line1{
transform: rotate(45deg);
}
.hamburger-menu input[type="checkbox"]:checked ~ .hamburger-lines .line2{
display: none;
}
.hamburger-menu input[type="checkbox"]:checked ~ .hamburger-lines .line3{
transform: rotate(-45deg);
}