diff --git a/flclogo.jpg b/flclogo.jpg new file mode 100644 index 0000000..1b4f8b9 Binary files /dev/null and b/flclogo.jpg differ diff --git a/hacker-pc.gif b/hacker-pc.gif new file mode 100644 index 0000000..33d129b Binary files /dev/null and b/hacker-pc.gif differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..2f94a0c --- /dev/null +++ b/index.html @@ -0,0 +1,77 @@ + + + + + + Stealth Bot + + + + + +
+ + +
+ + + +
+

+

+
+
+

+
+ +
+
+
+
+ +
+
+
+
+
+
+ +

About Me

+

Hi, I'm Stealth Bot! I'm an anonymous chatbot that lets you chat on Discord without revealing your identity. You can also use me to forward messages
to a designated channel anonymously. Moderators can see the original sender of forwarded messages in a separate channel.

+

Features:

+ +

I'm still under development, but I'm excited to help you communicate with others anonymously and securely!

+
+
+ +

How to Set Up:

+

how to set up page.

+
+
+

About Us

+

This is the about us page.

+
+
+

Contact my Developers

+

Github?

+
+
+ + \ No newline at end of file diff --git a/shrek-robin-hood.gif b/shrek-robin-hood.gif new file mode 100644 index 0000000..3aad122 Binary files /dev/null and b/shrek-robin-hood.gif differ diff --git a/stealthlogo.jpg b/stealthlogo.jpg new file mode 100644 index 0000000..8145b2c Binary files /dev/null and b/stealthlogo.jpg differ diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..2bd8cdf --- /dev/null +++ b/styles.css @@ -0,0 +1,158 @@ +body { + font-family: 'GG Sans', sans-serif; + background-color: #363940; + width:fit-content; + } + + .landing-page { + padding: 50px; + text-align: center; + } + + .flclogo { + width: 500px; + height: 15%; + position: absolute; + top: 10px; + left:1000PX; + z-index: 1000; +} + +.stealthlogo { + width: 150px; + height: auto; + position: absolute; + top: 10px; + left: 10px; + max-width: 100%; +} + + + + + header { + width: 100%; + height: 15vh; + font-family: 'GG Sans', sans-serif; + font-size: 50px; + font-weight: bold; + border-bottom: 1px solid #ccc; + border-bottom: none; + margin-left: 15%; + opacity: 0.5; + + } + .menu a{ + font-family: 'GG Sans', sans-serif; + + text-decoration: none; + color: #ffffff; + padding: 10px 20px; + font-size: 20px; + } + nav { + width: 100%; + height: 100px; + background-color: #363940; + + } + nav a { + color: #b4b4b4; + } + + nav a:hover { + color: #000; + } + + .content { + margin-left: 4%; + font-family: 'GG Sans', sans-serif; + font-size:25px; + color: #ccc; + opacity: 0.5; +} + + +.button { + align-items: center; + margin-left: 650px; + background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB); + border: 0; + border-radius: 8px; + box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px; + box-sizing: border-box; + color: #FFFFFF; + display: flex; + font-family: Phantomsans, sans-serif; + font-size: 20px; + justify-content: center; + line-height: 1em; + max-width: 100%; + min-width: 140px; + padding: 3px; + text-decoration: none; + user-select: none; + -webkit-user-select: none; + touch-action: manipulation; + white-space: nowrap; + cursor: pointer; +} + +.button:active, +.button:hover { + outline: 0; +} + +.button span { + background-color: rgb(5, 6, 45); + padding: 16px 24px; + border-radius: 6px; + width: 100%; + height: 100%; + transition: 300ms; +} + +.button:hover span { + background: none; +} + +@media (min-width: 768px) { + .button { + font-size: 24px; + min-width: 196px; + } +} + +#text1 { + margin-left: 10%; + font-family: 'GG Sans', sans-serif; + font-size: px; + color: #ccc; + opacity: 0.5; + margin-top: 250px; + overflow: hidden; + white-space: nowrap; + border-right: 2px solid #000; +} + +#text2 { + margin-left: 10%; + font-family: 'GG Sans', sans-serif; + font-size: 40px; + color: #ccc; + opacity: 0.5; + overflow: hidden; + white-space: nowrap; + border-right: 40px solid #000; +} + +#title { + margin-left: 10%; + font-family: 'GG Sans', sans-serif; + color: #ccc; + opacity: 0.5; + overflow: hidden; + white-space: nowrap; + border-right: 2px solid #000; + font-size: 95px; +} diff --git a/typewriter.js b/typewriter.js new file mode 100644 index 0000000..61eaf56 --- /dev/null +++ b/typewriter.js @@ -0,0 +1,19 @@ +function typeWriterEffect(id, text, speed) { + const element = document.getElementById(id); + let i = 0; + + function type() { + if (i < text.length) { + element.textContent += text.charAt(i); + i++; + setTimeout(type, speed); + } + } + + type(); +} + +window.onload = function() { + typeWriterEffect("title", "Hello, I am Stealth Bot", 50); + typeWriterEffect("text2", "A Fully Anonymous Chatbot for Your Discord Server", 50); +};