-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
133 lines (113 loc) · 3.54 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
<!DOCTYPE html>
<html>
<!--
This is MDwiki v0.6.2
(C) 2013 by Timo Dörr and contributors. This software is licensed
under the terms of the GNU GPLv3 with additional terms applied.
See https://github.com/Dynalon/mdwiki/blob/master/LICENSE.txt for more detail.
See //github.com/Dynalon/mdwiki for a copy of the source code.
-->
<head>
<title>MDwiki</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<style type="text/css">
/* hide the main content while we assemble everything */
.md-hidden-load {
display: none;
}
.anchor-highlight {
font-size: 0.7em;
margin-left: 0.25em;
}
/* for pageContentMenu */
#md-page-menu {
position: static;
}
#md-page-menu a.active {
/* background-color: rgba(0, 0, 0, 0.01); */
font-weight: bold;
padding-left: 6px;
}
@media (min-width: 992px) {
#md-page-menu.affix {
position: fixed;
}
}
@media (min-width: 768px) {
.md-float-left .col-sm-8,
.md-float-right .col-sm-8 {
max-width: 66.67%;
}
.md-float-left .col-sm-4,
.md-float-right .col-sm-4 {
max-width: 33.33%;
}
.md-float-left .col-sm-2,
.md-float-right .col-sm-2 {
max-width: 16.67%;
}
}
@media (max-width: 992px) {
a.forkmeongithub {
display: none;
}
}
@media (max-width: 768px) {
/* don't use floating for smaller screens */
.md-float-left .col-sm-8,
.md-float-left .col-sm-4,
.md-float-left .col-sm-2 {
width: 100%;
min-width: 100%;
}
.md-float-right .col-sm-8,
.md-float-right .col-sm-4,
.md-float-right .col-sm-2 {
width: 100%;
min-width: 100%;
}
}
.md-floatenv .md-text {
/* md-text is not of md-col-* but needs the spacing */
margin-left: 15px;
margin-right: 15px;
}
/* float images */
.md-float-left .col-sm-8,
.md-float-left .col-sm-4,
.md-float-left .col-sm-2 {
width: auto;
}
.md-float-right .col-sm-8,
.md-float-right .col-sm-4,
.md-float-right .col-sm-2 {
float: right !important;
width: auto;
}
#md-all .md-copyright-footer {
font-size: smaller;
padding: 1em;
}
html,
body {
word-wrap: break-word;
margin: 0;
height: 100%;
}
</style>
<link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.bootcss.com/jquery.colorbox/1.6.4/jquery.colorbox-min.js"></script>
<script src="MDwiki.js"></script>
</head>
<body>
<noscript>
This website requires Javascript to be enabled. Please turn on Javascript and reload the page.
</noscript>
<div id="md-all">
</div>
</body>
</html>