-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
143 lines (120 loc) · 2.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Karbo Docs & Guides</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Documentation and guides for Karbo cryptocurrency.">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- Favicons -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="icon" type="image/icon" href="images/favicon.ico" >
<!-- Karbo CSS -->
<link rel="stylesheet" href="css/buble.css">
<link href="css/karbo.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:200,200i,300,300i,400,400i,700,700i,900,900i&subset=cyrillic,latin-ext" rel="stylesheet">
<style>
.body {
font-family: 'Fira Sans', Arial, Helvetica, "Microsoft YaHei New", "Microsoft Yahei", "微软雅黑", 宋体, SimSun, STXihei, "华文细黑", sans-serif;
background: #FFF;
height: 100%;
margin: 0;
padding: 0;
color: #15315e;
}
.sidebar {
background-color: #127CC6;
background-image: linear-gradient(165deg,#0E073F 0%, #0057B8 43%, #0AADFD 100%);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
color: #fff;
}
.sidebar a,
.sidebar h2{
color: #fff;
}
.sidebar a:hover {
color: #14B0FD;
}
.search .search-keyword {
color: #14B0FD;
}
.search .results-panel a:hover {
color: #fff;
}
.sidebar-toggle {
width: auto;
}
.search {
position: absolute;
width: 100%;
top: 100px;
border-top: 1px solid #127CC6;
border-bottom: 1px solid #127CC6;
z-index: 10;
background-color: #0057B8;
color: #fff;
}
.search input {
background-color: #0057B8;
color: #fff;
}
.sidebar {
overflow: hidden;
}
.sidebar > h1 {
position: absolute;
top: 20px;
left: 0;
width: 100%;
color: #FFED00;
}
.sidebar > h1::before {
display: inline-block;
width:50px;
height:50px;
vertical-align: middle;
margin: -5px 10px 0 0;
content:url('images/logo.svg');
}
.sidebar li.active {
background-color: transparent;
}
.sidebar li.active a {
color: #14B0FD;
}
.sidebar-nav {
position: absolute;
width: 100%;
top: 160px;
/* Make only the nav scrollable */
overflow-y: auto;
height: calc(100% - 240px);
box-sizing: content-box;
padding-right: 17px;
}
</style>
</head>
<body>
<nav>
<a href="#/">Home</a>
<a href="//karbo.org">Karbo</a>
<a href="//karbo.org#download">Download</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: (
'Karbo Docs'
),
repo: '',
search: 'auto',
loadSidebar: false
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify@4.7.1/lib/plugins/search.min.js"></script>
</body>
</html>