-
Notifications
You must be signed in to change notification settings - Fork 0
/
inde.html
48 lines (48 loc) · 1.22 KB
/
inde.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.nav-mobile-button {
position: relative;
float: right;
padding: 9px 10px;
margin-top: 8px;
margin-right: 15px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
background: #eee;
}
.nav-mobile-button .sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.nav-mobile-button .icon-bar {
display: block;
margin-top: 4px;
width: 22px;
height: 2px;
background: #f65d3f;
border-radius: 1px;
}
</style>
</head>
<body>
<button class="nav-mobile-button">
<span class="sr-only"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</body>
</html>