-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (162 loc) · 4.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<title>Kobinハンズオン</title>
<meta charset="utf-8">
<meta content="Kobinハンズオン" name="title" />
<meta property="og:title" content="Kobinハンズオン" />
<meta name="twitter:title" content="Kobinハンズオン" />
<meta content="KobinというPython3のWebフレームワークを使ってWebアプリケーションを作りましょう。" name="description" />
<meta property="og:description" content="KobinというPython3のWebフレームワークを使ってWebアプリケーションを作りましょう。" />
<meta name="twitter:description" content="KobinというPython3のWebフレームワークを使ってWebアプリケーションを作りましょう。" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kobinpy.github.io/handson-ja/" />
<meta name="twitter:image" content="https://kobinpy.github.io/handson-ja/img/twitter_share.png" />
<meta property="og:image" content="https://kobinpy.github.io/handson-ja/img/ogp.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:type" content="website"/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@c_bata_" />
<link rel="icon" href="img/favicon.ico">
<style>
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans);
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body {
font-family: 'Droid Serif';
}
h1, h2, h3 {
font-family: "Helvetica neue","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Droid Sans",Meiryo,sans-serif;
font-weight: 400;
margin-bottom: 0;
}
.left-column h1, h2, h3 {
font-family: 'Yanone Kaffeesatz',sans-serif;
}
.remark-slide-content h1 { font-size: 2.4em; }
.remark-slide-content h2 { font-size: 1.8em; }
.remark-slide-content h3 { font-size: 1.3em; }
.footnote {
position: absolute;
bottom: 3em;
}
li { line-height: 2em; }
li p { line-height: 1.25em; }
.red { color: #fa0000; }
.large { font-size: 2em; }
a, a > code {
color: rgb(249, 38, 114);
text-decoration: none;
}
code {
background: #e7e8e2;
border-radius: 3px;
padding: 2px 5px;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-code-line-highlighted { background-color: #373832; }
.pull-container {
overflow: hidden;
}
.pull-left {
float: left;
width: 47%;
}
.pull-right {
float: right;
width: 47%;
}
.pull-right ~ p {
clear: both;
}
.image-center img {
margin: 100px 150px;
}
#slideshow .slide .content code {
font-size: 0.8em;
}
#slideshow .slide .content pre code {
font-size: 0.9em;
padding: 15px;
}
.inverse {
background: #0093F5;
color: #eeeeee;
}
.inverse a {
color: #f5dc00;
}
.inverse h1, .inverse h2 {
color: #f3f3f3;
line-height: 1.2em;
font-size: 2.2em;
}
/* Slide-specific styling */
#slide-inverse .footnote {
bottom: 12px;
left: 20px;
}
#slide-how .slides {
font-size: 0.9em;
position: absolute;
top: 151px;
right: 140px;
}
#slide-how .slides h3 {
margin-top: 0.2em;
}
#slide-how .slides .first, #slide-how .slides .second {
padding: 1px 20px;
height: 90px;
width: 120px;
-moz-box-shadow: 0 0 10px #777;
-webkit-box-shadow: 0 0 10px #777;
box-shadow: 0 0 10px #777;
}
#slide-how .slides .first {
background: #fff;
position: absolute;
top: 20%;
left: 20%;
z-index: 1;
}
#slide-how .slides .second {
position: relative;
background: #fff;
z-index: 0;
}
/* Two-column layout */
.left-column {
color: #777;
width: 20%;
height: 92%;
float: left;
}
.left-column h2:last-of-type, .left-column h3:last-child {
color: #000;
}
.right-column {
width: 75%;
float: right;
padding-top: 1em;
}
.profileicon {
width: 150px;
height: 150px;
border: 4px solid #ddd;
border-radius: 50%;
background-image: url(./img/icon.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
display: block;
}
</style>
</head>
<body>
<script src="https://remarkjs.com/downloads/remark-latest.min.js"></script>
<script>var slideshow = remark.create({sourceUrl: './slide.md'});</script>
</body>
</html>