-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.html
99 lines (95 loc) · 2.56 KB
/
slides.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
---
---
<html>
<head>
<title>ClaimChain</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.js"></script>
<style>
* { box-sizing: border-box; }
html {
height: 100%;
}
body {
padding: 0;
margin: 0;
font-size: 22px;
font-family: "Fira Sans", Arial, sans-serif;
}
h1,h2 {
font-weight: 400;
}
.title {
padding: 3em;
text-align: center;
}
.title h1 {
font-size: 8em;
margin: .5em;
}
.title h2 {
font-size: 3em;
}
.info {
padding: 3em;
padding-top: 10%;
text-align: center;
}
.big {
font-size: 3em;
}
.underline {
text-transform: underline;
}
ul {
list-style: none;
}
.fotorama__caption {
font-family: "Fira Sans", Arial, sans-serif;
text-align: center;
font-size: 3em;
}
</style>
</head>
<body>
<div class="fotorama"
data-width="100%"
data-height="100%"
data-transition="crossfade"
data-hash="true"
data-keyboard="true"
data-arrows="false"
data-click="true"
data-navposition="bottom">
<div class="title">
<h1>ClaimChain</h1>
<h2>Decentralized Public Key Infrastructure based on cross-referencing hash chains</h2>
<h2><a href="https://claimchain.github.io">claimchain.github.io</a></h2>
</div>
<img src="sauron.jpg" data-fit="cover" data-caption="Centralized PKI">
<img src="claimchain.svg">
<img src="chains.svg">
<img src="crossrefs.svg">
<img src="vrfs.svg">
<div class="info">
<div>
<ul class="big">
<li>Python implementation</li>
<li>Technical report</li>
</ul>
<div class="big"><a href="https://claimchain.github.io">claimchain.github.io</a></div>
</div>
</div>
<div class="info">
<ul class="big">
<li>Bogdan Kulynych, IMDEA</li>
<li>Carmela Troncoso, IMDEA</li>
<li>Marios Isaakidis, UCL</li>
<li>George Danezis, UCL</li>
</ul>
<div class="big">Part of NEXTLEAP project: <a href="https://nextleap.eu">nextleap.eu</a></div>
</div>
</div>
</body>
</html>