-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
111 lines (102 loc) · 3.51 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
<!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 http://github.com/Dynalon/mdwiki for a copy of the source code.
-->
<head>
<title>2017 資訊之芽 C 語法班</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="fragment" content="!">
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
<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%;
max-width: !important;
min-width: 100%;
}
.md-float-right .col-sm-8, .md-float-right .col-sm-4, .md-float-right .col-sm-2 {
width: 100%;
max-width: !important;
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 {
background-color: !important;
font-size: smaller;
padding: 1em;
}
</style>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" type="text/css"></link>
<link rel="stylesheet" href="//yandex.st/highlightjs/7.3/styles/github.min.css" type="text/css"></link>
<link rel="stylesheet" href="./css/colorbox.css" />
<script type="text/javascript" src="//code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript" src="//yandex.st/highlightjs/7.3/highlight.min.js"></script>
<script type="text/javascript" src="./js/jquery.colorbox.min.js"></script>
<script type="text/javascript" src="./js/MDwiki.min.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>