"Untitled"
Bootstrap 4.1.1 Snippet by maulik112255

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="https://fonts.googleapis.com/css?family=Staatliches" rel="stylesheet">
<div class="container">
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle">
</label>
<ul id="menu">
<li><a href="#">iteam 1</a></li>
</ul>
<asid>
<h1>kuch toh huva hai</h1>
</asid>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.container{
margin: 0;
padding: 0;
background-color: #03A9F4;
font-family: 'Roboto', sans-serif;
overflow: hidden;
}
[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
display: none;
}
label,label:before,label:after{
position: absolute;
top: 25px;
left: 25px;
background: #03A9F4;
width: 30px;
height: 5px;
transition: .2s ease;
cursor: pointer;
z-index: 1;
}
label::before{
content:" ";
top:10px;
left:0px;
}
label::after{
content:"";
top:20px;
left:0;
}
#menu{
position:absolute;
margin:0;
padding:0;
width:110px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: