-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
88 lines (85 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<style>
body {
background: #111;
color: #ddd;
text-align: center;
}
.flex {
display: inline-flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
place-content: center;
gap: 2rem;
}
article {
background: #222;
min-width: 25%;
padding: 2rem;
}
.lightning {
font-size: 0.8rem;
color: yellow;
}
h2, h3 {
margin-top: 0;
text-align: center;
}
article a {
display: block;
text-align: center;
}
article img {
max-width: 100%;
}
</style>
</head>
<body>
<h1>Presentations</h1>
<section class="flex">
<article>
<h2>
Customizing the web
<span class="lightning" title="lightning talk">⚡</span>
</h2>
<h3>Userscripts & userstyles</h3>
<a href="./customizing-the-web/public/index.html">
<img
src="customizing-the-web/images/thumb-customizing-the-web.png"
alt="customizing the web with userscripts and userstyles"
width="400"
height="300"
/>
</a>
</article>
<article>
<h2>Userscripts & bookmarklets</h2>
<h3>Epically customize the web</h3>
<a href="./userscripts/public/index.html">
<img
src="userscripts/images/thumb-userscripts-bookmarklets.png"
alt="userscripts and bookmarklets"
width="400"
height="300"
/>
</a>
</article>
<article>
<h2>Unicode, diacritics and normalization</h2>
<h3></h3>
<a href="./unicode-diacritics-and-normalization/public/index.html">
<img
src="unicode-diacritics-and-normalization/images/thumb-unicode-diacritics-and-normalization.png"
alt="Unicode, diacritics and normalization"
width="400"
height="300"
/>
</a>
</article>
</div>
</body>
</html>