This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (87 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>How not to design a state machine - slides</title>
<meta charset="utf-8">
<style>
body {
font-family:"Helvetica Neue, Helvetica, Liberation Sans, Arial, sans-serif";
}
.remark-slide-content{
background-color: #3c465a;
color: #fff;
}
.title-slide img{
max-width: 200px;
}
.title-slide .author{
display: block;
margin-top: 150px;
font-size: 30px;
}
.remark-slide-content h1{
font-size: 80px;
line-height: 33px;
}
h1, h2, h3 {
font-weight: normal;
}
h3{
margin-bottom: 0;
}
.remark-slide-content h2{
padding: 120px 0 60px;
font-size: 70px;
}
.remark-slide-content{
font-size: 30px;
}
.invert img{
-webkit-filter: invert(1);
}
.bigsm img{
height: 500px;
}
.remark-code,
.remark-inline-code {
font-size: 20px;
}
.twostates ul{
float: left;
width: 50%;
margin: 0;
padding: 0;
}
.twostates li{
margin: 0;
padding: 0;
list-style-type: none;
margin: 30px 0;
}
.twostates ul:nth-child(3) li:nth-child(2){
text-align: right;
}
.twostates img{
height: 400px;
}
.full img{
width: 130%;
margin-left: -15%;
}
.header{
font-size: 40px;
color: rgb(235, 244, 126)
}
</style>
</head>
<body>
<script src="remark.min.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'slides.md',
highlightStyle: "monokai"
});
</script>
</body>
</html>