diff options
-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; |