-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (93 loc) · 2.69 KB
/
Copy pathindex.html
File metadata and controls
103 lines (93 loc) · 2.69 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forensics-Calendar</title>
<style>
body {
font-family: 'Courier New', monospace;
background-color: #0a0a1a;
color: #00ff00;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
}
.container {
text-align: center;
background-color: rgba(10, 20, 40, 0.8);
padding: 40px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
border: 2px solid #00ff00;
}
h1 {
font-size: 2.5em;
margin-bottom: 30px;
text-transform: uppercase;
letter-spacing: 3px;
}
.nav-group {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
}
.nav-item {
background-color: rgba(0, 50, 100, 0.5);
border: 1px solid #00ff00;
padding: 15px 30px;
border-radius: 8px;
transition: all 0.3s ease;
cursor: pointer;
}
.nav-item:hover {
background-color: #00ff00;
color: #0a0a1a;
transform: scale(1.05);
}
a {
color: #00ff00;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Forensics-Calendar</h1>
<div class="nav-group">
<div class="nav-item">
<a href="https://github.com/Forensics-wiki/Forensics-Calendar">项目地址</a>
</div>
</div>
<div class="nav-group">
<div class="nav-item">
<a href="/calendar.json">日历API</a>
</div>
<div class="nav-item">
<a href="/calendar.html">日历JSON生成</a>
</div>
</div>
<div class="nav-group">
<div class="nav-item">
<a href="/download.json">检材API</a>
</div>
<div class="nav-item">
<a href="/download.html">检材JSON生成</a>
</div>
</div>
<div class="nav-group">
<div class="nav-item">
<a href="/writeup.json">题解API</a>
</div>
<div class="nav-item">
<a href="/writeup.html">题解JSON生成</a>
</div>
</div>
</div>
</body>
</html>