-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (68 loc) · 2.02 KB
/
index.html
File metadata and controls
74 lines (68 loc) · 2.02 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>文档</title>
<meta name="keywords" content="your tags" />
<meta name="description" content="150 words" />
<meta name="robots" content="index,follow" />
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="标题">
<meta name="google" value="notranslate" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit">
<meta http-equiv="Cache-Control" content="no-siteapp" />
<style type="text/css">
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,body{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #dbdbdb;
}
.title{
font-size: 40px;
}
.menu{
position: absolute;
top: 0;
left: 0;
bottom: 0;
list-style-type: none;
width: 200px;
background-color: #fff;
}
.menu li{
}
.menu li a{
display: block;
width: 100%;
height: 36px;
line-height: 36px;
padding-left: 10px;
text-decoration: none;
color: #999;
border-left: 3px solid transparent;
}
.menu li a:hover{
color: #666;
border-left: 3px solid #009688;
background-color: #eee;
}
</style>
</head>
<body>
<h2 class="title">文档</h2>
<ul class="menu">
<li><a href="public/OmegaOptions.bak">SwitchyOmega配置文件</a></li>
</ul>
</body>
</html>