-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (153 loc) · 3.66 KB
/
index.html
File metadata and controls
180 lines (153 loc) · 3.66 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html>
<head>
<style>
body.normal {
background-image: url('cgg25-ns-01336.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
font-family: Verdana, sans-serif;
font-weight: bold;
font-variant: small-caps;
color: #fefffe;
text-shadow: 2px 2px 0px #1b2518;
}
body.fools {
background-image: url('cgg25-ns-01336.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
font-family: "Comic Sans MS", sans-serif;
font-weight: bold;
font-variant: small-caps;
color: #fefffe;
text-shadow: 2px 2px 0px #1b2518;
}
a {
color: #9abf24;
}
a:link {
color: #9abf24;
}
a:visited {
color: #9abf24;
}
a:hover {
color: #759f32;
}
a:active {
color: #759f32;
}
.container-42 {
padding: 42px;
position: relative;
}
.center {
position: absolute;
margin: 0;
display: flex;
top: 50%;
left: 50%;
justify-content: center;
align-items: center;
text-align: center;
vertical-align: sub;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.blur {
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
}
.border-green {
border: 3px solid green;
}
.bottom-right {
text-align: right;
vertical-align: sub;
position: absolute;
right: 0px;
bottom: 0px;
}
.bottom-left {
text-align: left;
vertical-align: sub;
position: absolute;
left: 0px;
bottom: 0px;
}
.top-right {
text-align: right;
vertical-align: sub;
position: absolute;
right: 0px;
top: 0px;
}
.top-left {
text-align: left;
vertical-align: sub;
position: absolute;
left: 0px;
top: 0px;
}
</style>
<title>
HEEEEELGAAAAAAAA
</title>
<link rel="icon" type="image/x-icon" href="helga.png">
</head>
<body>
<div class="top-left">
By Griefed [F.A.R.T.]
</div>
<div class="top-right">
Source at <a href="http://github.com/Griefed/helga.gg">github/griefed/helga.gg</a>
</div>
<div class="container-42 center blur border-green">
<img src="pigeonpls-pigeon-dance.gif" alt="ani-gurr" class=top-left style="margin-top: -130px;">
<div>
<h1>16.04.2026 - 19.04.2026</h1>
<h2>Time to HEEEELGAAAAA</h2>
<p id="countdown">CALCULATING</p>
<p>More at <a href="https://www.caggtus.de">www.caggtus.de</a></p>
</div>
</div>
<div class="bottom-left" >
<div>
<img src="alert-siren.gif" alt="alert-siren" width="60" style="margin-left: 45px;">
</div>
<div>
<img src="fire-exit-door-3813862219.webp" alt="fire-door" height="170">
<img src="clap-around-of-applause.gif" alt="clap-around-of-applause" width="100" style="margin-bottom: 50px; margin-left: -50px;">
</div>
<div>
Disclaimer: This website is not affiliated with Caggtus or Leipziger Messe.
</div>
</div>
<img src="archangel-pigeon.png" alt="gurr" width="244" height="367" class=bottom-right>
</body>
</html>
<script>
//https://www.w3schools.com/howto/howto_js_countdown.asp
var countDownDate = new Date("Apr 16, 2026 18:00:00").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("countdown").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "EXPIRED";
}
}, 1000);
var now = new Date();
var day = now.getDate();
var month = now.getMonth();
var date = day + '.' + month;
document.body.className = (date == '1.3' ? "fools" : "normal");
</script>