-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.html
More file actions
67 lines (60 loc) · 1.62 KB
/
Copy pathsetting.html
File metadata and controls
67 lines (60 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>设置</title>
<script src="resource/v0.0.1/iconfont.js"></script>
<link rel="stylesheet" href="css/appui.css">
<style>
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
font-size: 55px;
margin: 0 50px 0 20px;
}
a {
text-decoration: none;
display: flex;
align-items: center;
height: 100%;
}
body {
background-color: whitesmoke;
}
body>div {
width: auto;
height: 70px;
background-color: rgba(white, white, white, .5);
padding: 5px 5px;
border: 2px solid gainsboro;
margin: 20px 50px;
text-align: left;
border-radius: 20px;
display: flex;
align-items: center;
}
.setText {
white-space: nowrap;
text-align: left;
font-size: larger;
font-weight: 800;
line-height: 1;
margin: 0;
}
</style>
</head>
<body>
<h1>系统设置</h1>
<div style="background-color:rgb(218, 218, 218);">
<a href="about.html" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-guanyuwomen"></use>
</svg>
<div class="setText">关于</div>
</a>
</div>
</body>
</html>