-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (81 loc) · 2.81 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Lysmarine</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no">
<meta name="description" content="Operating system for DIY chart plotters">
<meta property="og:url" content="http://lysmarineos.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Operating system for DIY chart plotters" />
<meta property="og:image" content="http://lysmarineos.com/img/logo.png" />
<link rel="stylesheet" href="theme-simple-dark.css">
<script src="jquery-flipster/demo/jquery.min.js" type="text/javascript"></script>
<script src="jquery-flipster/dist/jquery.flipster.min.js" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="jquery-flipster/dist/jquery.flipster.css">
<style>
:root {
--theme-hue: 325;
--cover-background-color: hsl(var(--theme-hue), 25%, 60%);
}
.cover.show{
background-image: url('water.jpg') !important;
--cover-background-color: inerith;
background-size: cover !important;
}
#footer {
background-color: #ffffff0a;
}
#footer #contact{
margin-left: var(--sidebar-width);
padding-left: 10%;
}
#footer #licence{
float:right
}
#footer a {
border-bottom: var(--link-border-bottom);
color: var(--link-color);
-webkit-text-decoration: var(--link-text-decoration);
text-decoration: var(--link-text-decoration);
-webkit-text-decoration-color: var(--link-text-decoration-color);
text-decoration-color: var(--link-text-decoration-color);
}
.flipster {
background-color:black;
border:1px solid silver;
}
</style>
</head>
<body>
<div id="app"></div>
<div id="footer">
<div id="contact" >
<h3>Contact</h3>
<a href="https://www.facebook.com/groups/1072445939633174/">Get in touch with the community.</a><br>
<a href="https://github.com/lysmarine/lysmarine_gen/issues">Bugs, Issues, requests</a><br>
<a href="https://www.facebook.com/lysmarineOS">Facebook</a><br>
</div>
<a rel="licence" id="licence" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Licence Creative Commons" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a> </div>
</div>
<script>
window.$docsify = {
name : 'LysMarine',
repo : 'https://github.com/lysmarine',
coverpage : 'COVERPAGE.md',
homepage : 'README.md',
auto2top : true,
maxLevel : 1,
subMaxLevel: 6,
executeScript: true,
themeable : {
},
};
</script>
<script src="docsify.min.js"></script>
<script src="docsify-themeable"></script>
<script src="search.js"></script>
<script src="docsify-pagination.min.js"></script>
</body>
</html>