diff options
author | anyunderstanding | 2024-06-06 15:12:19 +0200 |
---|---|---|
committer | anyunderstanding | 2024-06-06 15:12:19 +0200 |
commit | 92bfcd2c3fdd3a2e60a884ebd7f14b67566d30e8 (patch) | |
tree | 23234302f8eea2babd5c52ec2faac602670dcfa9 /cooler | |
parent | 52688546dd5a8031563b3ea71d9a3d73ec044705 (diff) |
the greates version ever
Diffstat (limited to 'cooler')
-rw-r--r-- | cooler/index.html | 33 | ||||
-rw-r--r-- | cooler/style.css | 26 |
2 files changed, 59 insertions, 0 deletions
diff --git a/cooler/index.html b/cooler/index.html index bba72f5..9d856f7 100644 --- a/cooler/index.html +++ b/cooler/index.html @@ -47,6 +47,39 @@ </section> +<section> + <h1>Meet the best Players</h1> + <ul> + <li><a href="https://github.com/larsvommars">LARSVOMMARS</a></li> + <li><a href="https://github.com/marvinborner">MARWYNTHEMAGE</a></li> + <li> + <a href="https://github.com/AnyUnderstanding">ANYUNDERSTANDING</a> + </li> + <li><a href="https://codeberg.org/timber">TIMBER</a></li> + </ul> +</section> + +<section> + <h1>SOCIAL</h1> + <ul> + <li><a href="https://play.ctf.kitctf.de/teams/Ludicrous%20Avengers%20of%20Ridiculous%20Shenanigans">KITCTF</a> + </li> + <li><a href="https://github.com/lars-ctf">GITHUB</a></li> + </ul> +</section> +<section> + <h1>Achievements</h1> + <ul> + <li> + <a href="https://play.ctf.kitctf.de/teams/Ludicrous%20Avengers%20of%20Ridiculous%20Shenanigans">1(7)th place + at GPN22 CTF</a></li> + <li> + <a href="https://gpn21.ctf.kitctf.de/teams/194"> + (1 + 25)th place at GPN21 CTF + </a> + </li> + </ul> +</section> </body> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" diff --git a/cooler/style.css b/cooler/style.css index 1f2fc5f..c33162a 100644 --- a/cooler/style.css +++ b/cooler/style.css @@ -9,6 +9,7 @@ html, body { font-size: 69px; font-family: 'Courier New', Courier, monospace; font-weight: bold; + overflow-x: hidden; } section{ @@ -150,4 +151,29 @@ div { transform: translate(-50%, -40%); width: 100%; height: 100vh; +} + +ul li { + animation: shake 0.1s ease infinite; +} + +@keyframes rotate { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + + } +} +@keyframes shake { + 0% { + transform: rotate(0deg); + } + 50% { + transform: rotate(5deg); + } + 100% { + transform: rotate(-5deg); + } }
\ No newline at end of file |