File tree Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Expand file tree Collapse file tree 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>
4747
4848</ section >
4949
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 >
5083</ body >
5184
5285< 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 {
99 font-size : 69px ;
1010 font-family : 'Courier New' , Courier, monospace;
1111 font-weight : bold;
12+ overflow-x : hidden;
1213}
1314
1415section {
@@ -150,4 +151,29 @@ div {
150151 transform : translate (-50% , -40% );
151152 width : 100% ;
152153 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+ }
153179}
You can’t perform that action at this time.
0 commit comments