forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuckle_meetup.html
53 lines (51 loc) · 1.44 KB
/
Buckle_meetup.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
<!DOCTYPE html>
<html>
<head>
<title>BuckleScript</title>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code {
font-family: 'Ubuntu Mono';
font-size: 14px;
}
table {
width: 50%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
font-size: 10px;
}
th, td {
padding: 5px;
}
/*code {*/
/*font-size: 7px;*/
/*}*/
</style>
<link rel="stylesheet" type="text/css"
href="//cdn.datatables.net/1.10.9/css/jquery.dataTables.min.css">
</head>
<body>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js"></script>
<script src="./remark.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl : 'Buckle_meetup.md'
});
// $(document).ready(function(){
// $('#example').DataTable();
// })
</script>
</body>
</html>