commit f3da212bbd594264f7c19dda9c18e3b10cf6af4c Author: Sojus07 Date: Wed Apr 9 23:19:18 2025 +0200 pepega diff --git a/index.html b/index.html new file mode 100644 index 0000000..4e05499 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ + + + + + + + RFSwagger.lol + + + + +
+

👻 Waddup, cuh ?

+

[ RFSwagger.lol ]

+
+ Website + Tor Nodes + Git + Contact 👀 +
+
+
+ + diff --git a/src/css/main.css b/src/css/main.css new file mode 100644 index 0000000..cf020a0 --- /dev/null +++ b/src/css/main.css @@ -0,0 +1,42 @@ +body { + background: #0d0d0d; + color: #00ff99; + font-family: monospace; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + margin: 0; +} +h1 { + font-size: 2rem; + margin-bottom: 1rem; +} +.terminal { + background: #111; + padding: 2rem; + border: 1px solid #00ff99; + border-radius: 5px; + text-align: center; +} +.btn { + display: inline-block; + margin: 0.5rem; + padding: 0.75rem 1.5rem; + color: #0d0d0d; + background-color: #00ff99; + border: none; + border-radius: 3px; + font-weight: bold; + text-decoration: none; + transition: 0.2s; +} +.btn:hover { + background-color: #00cc77; +} +.ghost { + margin-top: 1.5rem; + font-size: 1.25rem; + color: #888; +} diff --git a/src/js/main.js b/src/js/main.js new file mode 100644 index 0000000..6ac9e4e --- /dev/null +++ b/src/js/main.js @@ -0,0 +1,3 @@ +var textArray = ["HECK YEAH. I LOVE ALT GIRLS", "DID YOU SAW THE HOTSPOT?", "I LIKE SATELLITES", "AUTISTIC ASF", "CHICKENJOCKEY"]; +var randomIndex = Math.floor(Math.random() * textArray.length); +document.getElementsByClassName("ghost")[0].innerHTML = """ + textArray[randomIndex] + """;