File tree 2 files changed +59
-0
lines changed
2 files changed +59
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,39 @@ <h1>Flag Showcase</h1>
47
47
48
48
</ section >
49
49
50
+ < section >
51
+ < h1 > Meet the best Players</ h1 >
52
+ < ul >
53
+ < li > < a href ="https://github.com/larsvommars "> LARSVOMMARS</ a > </ li >
54
+ < li > < a href ="https://github.com/marvinborner "> MARWYNTHEMAGE</ a > </ li >
55
+ < li >
56
+ < a href ="https://github.com/AnyUnderstanding "> ANYUNDERSTANDING</ a >
57
+ </ li >
58
+ < li > < a href ="https://codeberg.org/timber "> TIMBER</ a > </ li >
59
+ </ ul >
60
+ </ section >
61
+
62
+ < section >
63
+ < h1 > SOCIAL</ h1 >
64
+ < ul >
65
+ < li > < a href ="https://play.ctf.kitctf.de/teams/Ludicrous%20Avengers%20of%20Ridiculous%20Shenanigans "> KITCTF</ a >
66
+ </ li >
67
+ < li > < a href ="https://github.com/lars-ctf "> GITHUB</ a > </ li >
68
+ </ ul >
69
+ </ section >
70
+ < section >
71
+ < h1 > Achievements</ h1 >
72
+ < ul >
73
+ < li >
74
+ < a href ="https://play.ctf.kitctf.de/teams/Ludicrous%20Avengers%20of%20Ridiculous%20Shenanigans "> 1(7)th place
75
+ at GPN22 CTF</ a > </ li >
76
+ < li >
77
+ < a href ="https://gpn21.ctf.kitctf.de/teams/194 ">
78
+ (1 + 25)th place at GPN21 CTF
79
+ </ a >
80
+ </ li >
81
+ </ ul >
82
+ </ section >
50
83
</ body >
51
84
52
85
< script src ="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js "
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ html, body {
9
9
font-size : 69px ;
10
10
font-family : 'Courier New' , Courier, monospace;
11
11
font-weight : bold;
12
+ overflow-x : hidden;
12
13
}
13
14
14
15
section {
@@ -150,4 +151,29 @@ div {
150
151
transform : translate (-50% , -40% );
151
152
width : 100% ;
152
153
height : 100vh ;
154
+ }
155
+
156
+ ul li {
157
+ animation : shake 0.1s ease infinite;
158
+ }
159
+
160
+ @keyframes rotate {
161
+ 0% {
162
+ transform : rotate (0deg );
163
+ }
164
+ 100% {
165
+ transform : rotate (360deg );
166
+
167
+ }
168
+ }
169
+ @keyframes shake {
170
+ 0% {
171
+ transform : rotate (0deg );
172
+ }
173
+ 50% {
174
+ transform : rotate (5deg );
175
+ }
176
+ 100% {
177
+ transform : rotate (-5deg );
178
+ }
153
179
}
You can’t perform that action at this time.
0 commit comments