-
Notifications
You must be signed in to change notification settings - Fork 1
/
http_zumbo-8ac445b1.ctf.bsidessf.net_index.template.html
84 lines (77 loc) · 1.59 KB
/
http_zumbo-8ac445b1.ctf.bsidessf.net_index.template.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
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade" rel="stylesheet">
<p id=rot> </p>
<p id=main>
Welcome to <span class='fancy'>Zumbo Dot Com</span>
</p>
<p>
You can do <span id='spinner'>Anything</span> At Zumbo Dot Com.
</p>
<p>
This site has been visited 12345731 times.
</p>
<style>
body {
text-align: center;
font-size: 50px;
}
.fancy {
font-family: 'Bungee Shade', cursive;
animation-duration: 2s;
animation-name: slide;
animation-iteration-count: infinite;
animation-direction: alternate;
position: relative;
animation-timing-function: ease;
}
@keyframes slide{
0% {color:red; top: 0px;}
100% {color:yellow; top: 50px;}
}
#spinner {
font-family: 'Bungee Shade', cursive;
animation-name: spinner;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-duration: 5s;
transform-style: preserve-3d;
text-align: center;
font-size: 50px;
display: block;
}
#spinner:after,
#spinner:before {
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
transform: translateZ(3px);
}
#spinner:before {
transform:translateZ(-3px);
}
@keyframes spinner {
from {
transform: rotateY(0deg);
color: cyan;
}
to {
transform: rotateY(-360deg);
color: magenta;
}
}
#main {
font-family: Verdana, 'Sans-Serif';
font-size: 100px;
}
</style>
<script>
function randcol() { return '#'+Math.random().toString(16).slice(-6); }
function color() {
col = randcol();
document.body.style.backgroundColor = col;
setTimeout(color, 5000);
}
color();
</script>
<!-- page: index.template, src: /code/server.py -->