summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cool/index.html48
-rw-r--r--cool/script.js (renamed from script.js)0
-rw-r--r--cool/style.css (renamed from style.css)23
-rw-r--r--index.html47
-rw-r--r--uncool/index.html0
5 files changed, 70 insertions, 48 deletions
diff --git a/cool/index.html b/cool/index.html
new file mode 100644
index 0000000..2a9230b
--- /dev/null
+++ b/cool/index.html
@@ -0,0 +1,48 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width" />
+ <link
+ rel="stylesheet"
+ href="style.css"
+ type="text/css"
+ media="screen"
+ charset="utf-8"
+ />
+ <title>LARS</title>
+ </head>
+ <body>
+ <div class="page">
+ <div class="center blink">
+ <p>Ludicrous Adventures of Ridiculous Shenanigans</p>
+ <p>#1 CTF team</p>
+ </div>
+ <small class="note">SCROLL</small>
+ </div>
+ <div class="page">
+ <ul class="center blink">
+ <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://github.com/maytastico">MAYTASTICO</a></li>
+ <li><a href="https://github.com/pherkel">PHERKEL</a></li>
+ <li><a href="https://github.com/r1vers0ng">LINEA</a></li>
+ </ul>
+ </div>
+ <div class="page colored">
+ <div class="center blink">
+ <h1>SOCIAL</h1>
+ <ul>
+ <li><a href="https://gpn21.ctf.kitctf.de/teams/194">KITCTF</a></li>
+ <li><a href="https://github.com/lars-ctf">GITHUB</a></li>
+ </ul>
+ </div>
+ </div>
+ <div id="bg" class="bg"></div>
+ <script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
+ <script src="script.js"></script>
+ </body>
+</html>
diff --git a/script.js b/cool/script.js
index 6eee911..6eee911 100644
--- a/script.js
+++ b/cool/script.js
diff --git a/style.css b/cool/style.css
index 66c738e..584e123 100644
--- a/style.css
+++ b/cool/style.css
@@ -1,14 +1,17 @@
html, body {
background-color: #000;
color: #fff;
- padding: 0;
- margin: 0;
text-align: center;
font-size: 69px;
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
+* {
+ padding: 0;
+ margin: 0;
+}
+
.center {
position: absolute;
top: 50%;
@@ -66,12 +69,12 @@ a:link, a:visited {
color: #fff;
}
-@media (prefers-reduced-motion: reduce) {
- .blink {
- animation: none;
- }
+/* @media (prefers-reduced-motion: reduce) { */
+/* .blink { */
+/* animation: none; */
+/* } */
- .bg {
- display: none;
- }
-}
+/* .bg { */
+/* display: none; */
+/* } */
+/* } */
diff --git a/index.html b/index.html
index 2a9230b..d62c62f 100644
--- a/index.html
+++ b/index.html
@@ -3,46 +3,17 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
- <link
- rel="stylesheet"
- href="style.css"
- type="text/css"
- media="screen"
- charset="utf-8"
- />
<title>LARS</title>
</head>
<body>
- <div class="page">
- <div class="center blink">
- <p>Ludicrous Adventures of Ridiculous Shenanigans</p>
- <p>#1 CTF team</p>
- </div>
- <small class="note">SCROLL</small>
- </div>
- <div class="page">
- <ul class="center blink">
- <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://github.com/maytastico">MAYTASTICO</a></li>
- <li><a href="https://github.com/pherkel">PHERKEL</a></li>
- <li><a href="https://github.com/r1vers0ng">LINEA</a></li>
- </ul>
- </div>
- <div class="page colored">
- <div class="center blink">
- <h1>SOCIAL</h1>
- <ul>
- <li><a href="https://gpn21.ctf.kitctf.de/teams/194">KITCTF</a></li>
- <li><a href="https://github.com/lars-ctf">GITHUB</a></li>
- </ul>
- </div>
- </div>
- <div id="bg" class="bg"></div>
- <script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
- <script src="script.js"></script>
+ Redirecting to <a href=""><span id="where"></span></a>, please wait 3s...
+ <script charset="utf-8">
+ const choices = ["cool", "uncool"];
+ const choice = choices[Math.floor(Math.random() * choices.length)];
+ where.innerText = choice;
+ setTimeout(function () {
+ window.location.replace(`${choice}/`);
+ }, 3000);
+ </script>
</body>
</html>
diff --git a/uncool/index.html b/uncool/index.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/uncool/index.html