-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·108 lines (84 loc) · 2.31 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
<!DOCTYPE html>
<html>
<head>
<title>ALLES! CTF 2020</title>
<meta charset="utf-8" />
<link href="https://cdn.jsdelivr.net/npm/@patternfly/[email protected]/patternfly.min.css" rel="stylesheet">
<style>
body {
overflow: hidden;
}
.pf-c-content {
padding: 20px 15px 60px;
padding-top: 100px;
max-width: 700px;
margin: auto;
}
.camp-logo {
padding-right: auto;
max-width: 250px;
}
.sponsr-logo {
padding-right: auto;
max-width: 150px;
}
.alles-logo {
position: relative;
top: 5px;
max-height: 1.5em;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
#spoiler {
position: relative;
}
#spoiler>img {
opacity: 0;
pointer-events: none;
}
#ree {
position: absolute;
width: 100%;
height: 100%;
transform: translateY(-100%);
pointer-events: none;
background: url(secret.png);
background-size: contain;
}
#spoiler:hover>#ree {
background: url(secret2.png);
background-size: contain;
}
</style>
</head>
<body>
<div class="pf-c-content">
<h1 class="pf-c-title pf-m-3xl">ALLES! CTF 2021 HW Edition</h1>
<p>
We are proud to announce this special event, a tournament never seen before in the ctf scene.
</p>
<ul>
<li>
<b>WHEN?</b> 01.04.2021
</li>
<li>
<b>WHERE?</b> <a href="">coming soon!</a>
</li>
<li>
<b>WHAT?</b> <a href="https://www.hedgewars.org">click me</a> <a href="https://github.com/allesctf/hw">and me</a>
</li>
</ul>
<a href="index2.html">
<div id=spoiler>
<img id="temp" src="secret.png">
<div id="ree">
</div>
</div>
</a>
</div>
</body>
</html>