diff options
author | Marvin Borner | 2023-12-28 16:21:14 +0100 |
---|---|---|
committer | Marvin Borner | 2023-12-28 16:21:14 +0100 |
commit | a366460da04bd0e6dfa3c5bec20ded01f749f0b7 (patch) | |
tree | 2c0c2243d6f22a0f47a1af59c96546f909146e82 | |
parent | 31f11fdeeb694a8e99e00a3884c76811dd4ef9d2 (diff) |
MONO
-rw-r--r-- | index.html | 18 | ||||
-rw-r--r-- | style.css | 14 |
2 files changed, 29 insertions, 3 deletions
@@ -13,9 +13,21 @@ <title>LARS</title> </head> <body> - <div class="center blink"> - <h1>Ludicrous Adventures of Ridiculous Shenanigans</h1> - <h1>#1 CTF team</h1> + <div class="page"> + <div class="center blink"> + <h1>Ludicrous Adventures of Ridiculous Shenanigans</h1> + <h1>#1 CTF team</h1> + </div> + </div> + <div class="page"> + <ul class="center blink"> + <li><a href="https://github.com/larsvommars">LARSVOMMARS</li> + <li><a href="https://github.com/marvinborner">MARWYNTHEMAGE</li> + <li><a href="https://github.com/AnyUnderstanding">ANYUNDERSTANDING</li> + <li><a href="https://github.com/maytastico">MAYTASTICO</li> + <li><a href="https://github.com/pherkel">PHERKEL</li> + <li><a href="https://github.com/r1vers0ng">LINEA</li> + </ul> </div> <div id="bg" class="bg"></div> <script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script> @@ -5,6 +5,7 @@ html, body { margin: 0; text-align: center; font-size: 42px; + font-family: 'Courier New', Courier, monospace; } .center { @@ -39,6 +40,19 @@ html, body { left: 0; } +.page { + height: 100vh; + position: relative; +} + +ul, li, ol { + list-style: none; +} + +a:link, a:visited { + color: #fff; +} + @media (prefers-reduced-motion: reduce) { .blink { animation: none; |