forked from shipstone-labs/vetkd-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (103 loc) · 2.61 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Documentation Hub</title>
<style>
/* General reset */
body {
margin: 0;
font-family: "Fira Sans", Arial, sans-serif;
line-height: 1.6;
background-color: #282c34;
color: #abb2bf;
}
/* Header style */
header {
background-color: #21252b;
padding: 1rem;
text-align: center;
border-bottom: 3px solid #61afef;
}
header h1 {
margin: 0;
font-size: 2rem;
color: #61afef;
}
header p {
margin: 0.5rem 0 0;
font-size: 1rem;
color: #98c379;
}
/* Links container */
.links {
display: flex;
flex-direction: column;
align-items: center;
margin: 2rem;
}
/* Button style for links */
.link-button {
display: block;
margin: 1rem;
padding: 1rem 2rem;
font-size: 1.2rem;
font-weight: bold;
text-align: center;
text-decoration: none;
color: #282c34;
background-color: #61afef;
border-radius: 8px;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.link-button:hover {
background-color: #56a6e0;
transform: scale(1.05);
}
.link-button:active {
transform: scale(0.98);
}
/* Footer style */
footer {
text-align: center;
padding: 1rem;
font-size: 0.9rem;
color: #5c6370;
border-top: 1px solid #3e4451;
margin-top: 2rem;
}
footer a {
color: #61afef;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Shipstone Labs ic-vetkd-notes Documentation Hub</h1>
<p>Select the documentation you need</p>
</header>
<main>
<div class="links">
<a href="/vetkd-utils/ic_vetkd_notes_client" class="link-button"
>@shipstone-labs/ic-vetkd-notes-client Module (Typedoc)</a
>
<a href="/vetkd-utils/ic_vetkd_notes" class="link-button"
>ic-vetkd-notes Crate (Rustdoc)</a
>
</div>
</main>
<footer>
<p>
Powered by <a href="https://www.rust-lang.org/">Rust</a>,
<a href="https://www.typescriptlang.org/">TypeScript</a>,
<a href="https://internetcomputer.org/">Internet Computer</a>, and
VetKeys
</p>
</footer>
</body>
</html>