-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
90 lines (89 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>warp::enchiridion - Satellite.im</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Warp is a service that can run as a single binary, providing an interface into the core technologies that run Satellite. This allows us to avoid rewriting the same tech over and over when developing for different platforms. Warp will work on most phones, tablets, computers, and even some consoles.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono&display=swap" rel="stylesheet">
<style>
body {
--theme-color: #fc5a2c;
font-family: 'Space Mono', monospace !important;
background-color: #d8cfbe;
}
::selection {
background: var(--theme-color);
color: #d1e1c4;
}
.cover {
background-image: url(https://i.imgur.com/Eluuc9J.png) !important;
background-size: cover !important;
background-position: center !important;
color: white;
}
.cover blockquote p {
text-shadow: 0 2px #9a1d65, 2px 4px #f3701f;
}
section.cover ul {
background-color: #d1e1c4;
padding: 1rem 0;
text-shadow: none;
color: #4b4744;
}
.cover img {
max-width: 350px !important;
}
.cover .anchor span {
color: #e2dcef !important;
}
.cover p a {
color: white;
}
.content, #main, .markdown-section {
background-color: #d8cfbe;
}
pre, code {
background-color: #f4f2e7 !important;
}
.sidebar, .sidebar-toggle {
background-color: #cac0b7;
}
.disclaimer {
position: fixed;
background-color: #ff9f43;
width: 100%;
z-index: 100;
padding: 0.5rem;
text-align: center;
color: white;
}
</style>
</head>
<body>
<div class="disclaimer">⚠️ Warp and the associated docs are under active development. <b>Expect frequent changes to documentation and code.</b></div>
<div id="app"></div>
<script>
window.$docsify = {
repo: '',
loadSidebar: true,
coverpage: true,
progress: {
position: "bottom",
color: "var(--theme-color,#42b983)",
height: "3px",
}
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-progress@latest/dist/progress.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-rust.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-toml.min.js"></script>
</body>
</html>