-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
65 lines (63 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Bitsim: Bitcoin Simulator </title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Bitcoin Simulator">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="bitsim" />
<meta name="twitter:description" content="bitcoin simulator" />
<meta name="twitter:image" content="https://bitsim.planaria.network/images/poster.png" />
<meta property="og:url" content="http://bitsim.planaria.network" />
<meta property="og:type" content="website" />
<meta property="og:title" content="bitsim" />
<meta property="og:description" content="bitcoin simulator" />
<meta property="og:image" content="https://bitsim.planaria.network/images/poster.png" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<style>
body {
font-family: Sans-Serif;
}
h1 {
letter-spacing: -1px;
font-weight: bold !important;
}
section.cover .cover-main>p:last-child a {
background: rgba(0,0,0,0.8) !important;
color: white;
margin: 0px;
padding: 0 10px !important;
letter-spacing: 0px;
border-radius: 2px !important;
color: white !important;
font-size: 12px !important;
font-family: sans-serif;
min-width: 60px;
}
section.cover.has-mask .mask {
background: none !important;
}
section.cover {
background: #ffffff !important;
}
.cover-main p {
font-family: Menlo, monaco, arial;
font-size: 12px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Bitsim',
repo: '',
themeColor: "rgba(0,0,0,0.8)",
coverpage: true,
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
</body>
</html>