-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoma-domainclass.html
47 lines (47 loc) · 969 Bytes
/
doma-domainclass.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
<!DOCTYPE html>
<html>
<head>
<title>ドメインクラスの話</title>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
@font-face {
font-family: 'mplus';
src: url('assets/mplus-1c-regular.ttf');
}
h1, h2, h3, h4, h5, h6 {
font-family: 'mplus';
}
p, li {
font-family: 'mplus';
font-size: 1.5em;
}
li p, li li {
font-size: 1em;
}
code.remark-inline-code {
font-family: 'Ubuntu Mono';
}
code.remark-code {
font-family: 'Ubuntu Mono';
font-size: 1.2em;
}
blockquote {
font-style: italic;
}
</style>
</head>
<body>
<script src="assets/remark.min.js"></script>
<script>
var slideshow = remark.create({
// ratio: '16:9',
sourceUrl: 'doma-domainclass.md',
navigation: {
scroll: false
},
// slideNumberFormat: ''
});
</script>
</body>
</html>