forked from kentwelcome/hitcon-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.66 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
<html>
<header>
<title>HITCON CMT 2019 - Interpreter</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<style>
body {
margin: 0;
height: 100%;
overflow: hidden;
background-color: #222222;
}
div.frameT {
width: 100%;
padding: 0;
display: table;
height: 100%;
position: absolute;
top: 0;
left: 0;
margin: 0;
}
div.youtube-link {
padding: 0;
vertical-align: middle;
display: table-cell;
margin: 0;
text-align: center;
font-size: 40;
font-family: 'Noto Sans TC';
}
a.link-style {
color: #cccccc;
text-decoration:none;
}
</style>
</header>
<body>
<div class="frameT">
<div class="youtube-link">
<a href="https://www.youtube.com/watch?v=2D36tRPaZts" class="link-style"><h1>R0</h1></a>
</div>
<div class="youtube-link">
<a href="https://www.youtube.com/watch?v=z3BNvFMq8HE" class="link-style"><h1>R1</h1></a>
</div>
<div class="youtube-link">
<a href="https://www.youtube.com/watch?v=cnj6DL1-8k8" class="link-style"><h1>R2</h1></a>
</div>
</div>
</body>
</html>