-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.html
More file actions
executable file
·152 lines (139 loc) · 3.87 KB
/
Copy pathsetting.html
File metadata and controls
executable file
·152 lines (139 loc) · 3.87 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.4.2/css/all.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="/css/darkmode.css">
<link rel="stylesheet" href="/css/topbar.css" />
<title>设置-猪吧维基BPLEWiki</title>
<style>
body {
margin-top:70px;
background-color: white;
max-width:100%;
padding:0px;
}
.space {
position: absolute;
top: 700px;
width: 100%;
height: 40px;
}
h1 {
margin-left: 10px;
}
.settings {
margin-top: 30px;
}
p {
position: relative;
margin-top: 0;
margin-left: 16px;
margin-bottom: -4px;
top: 50%;
transform: translateY(-50%);
//top: 10px;
}
.block {
width: 100%;
height: 40px;
background-color: #fafafa;
margin-bottom: 1px;
margin-top: 5px;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.block:active {
background-color: lightgreen;
}
.fa-angle-right {
position: relative;
margin-right: 15px;
top: 50%;
transform: translateY(-140%);
float: right;
}
a {
color: black;
text-decoration: none;
}
</style>
</head>
<body>
<div class="topblk">
<div class="back" id="btn">
<i class="fa-solid fa-angle-left"></i>
</div>
<a href="../index.html">
<div class="logo">
<img src="/img/favicon.ico" alt="logo">
<h3>猪吧维基</h3>
</div>
</a>
</div>
<h1>设置</h1>
<div class="settings">
<a href="account/account.html">
<div class="block">
<p>我的账户</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
<a href="account/nickname.html">
<div class="block">
<p>更改昵称</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
<a href="account/password.html">
<div class="block">
<p>更改密码</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
<a>
<a href="account/email.html">
<div class="block">
<p>更改邮箱</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
<a href="doc/user-agreement.html">
<div class="block">
<p>用户协议</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
</div>
<div class="settings">
<a href="service.html">
<div class="block">
<p>客服</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
<a>
<a href="/darkmode.html">
<div class="block">
<p>暗黑模式</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
<div class="block">
<a href="doc/about.html">
<p>关于</p>
<i class="fa-solid fa-angle-right"></i>
</div>
</a>
</div>
<div class="space">
</div>
<script src="/js/darkmode.js"></script>
<script>
document.getElementById('btn').addEventListener('click', function() {
history.back();
}, true)
</script>
</body>
</html>