From d37a2c94a3e1085a287a30d51f32381cff2a021d Mon Sep 17 00:00:00 2001 From: AstonishedLiker Date: Thu, 14 Nov 2024 16:57:04 +0100 Subject: [PATCH] fix top bar overflowing on low width displays and scaled counter based on screen width --- index.html | 24 ++++++++++++------------ input.css | 19 ++++++++++++++----- 2 files changed, 26 insertions(+), 17 deletions(-) diff --git a/index.html b/index.html index 51a6958..ec14692 100644 --- a/index.html +++ b/index.html @@ -11,9 +11,9 @@
-
+ @@ -31,7 +31,7 @@

+

With your help, let's make Roblox® fair — and have a few laughs along the way!

@@ -63,33 +63,33 @@

Unlimited

-

+

Together, we're focused on making Roblox a safer, fairer place to play, so developers can focus on creating and players can enjoy the game, worry-free. -

+

Our Impact

+
+

13371337

+

Cheaters were detected with OpenAC since it was firstly implemented. (Not working yet, soon™)

+

We're not just building tools — we're making a real difference in the Roblox community by giving developers the power to detect exploiters and keep their games safe. From industry veterans to new developers, people rely on our anti-cheat solutions daily to stay ahead of game-breaking exploits. Our methods are tested, battle-proven, and — if we're being honest — kind of fun to watch in action. Every 45 seconds, this counter will update to an approximated total amount of exploiters since OpenAC was firstly implemented. - Don't take our word for it — check this webpage's source code yourself if you're skeptical. + Don't take our word for it — check this webpage's source code yourself if you're skeptical.

-
+
We're all about transparency, proof, and keeping the games you love secure.
-
-

13371337

-

Cheaters were detected with OpenAC since it was firstly implemented. (Not working yet, soon™)

-

Contact Us

-

To contact us, join our community server!

+

To contact us, join our community server!

diff --git a/input.css b/input.css index 833ed8e..7cf50b1 100644 --- a/input.css +++ b/input.css @@ -11,6 +11,11 @@ @apply text-white text-xl font-medium font-jetbrains-mono uppercase cursor-pointer; } + .top-bar { + max-width: calc(100% - 44px); + @apply fixed flex items-center translucent-themed-item border h-24 max-[550px]:h-16 max-[550px]:p-4 min-w-0 px-12 py-6 top-6 left-11 right-11 z-50; + } + .translucent-themed-item { @apply rounded-xl bg-black bg-opacity-25 border-slate-600 border-opacity-40 backdrop-blur-md; } @@ -31,6 +36,10 @@ @apply text-white font-montserrat; } + .big-recap-label { + @apply description-label font-jetbrains-mono text-xl max-[450px]:text-sm text-left; + } + .recap-label { @apply description-label text-xl max-[675px]:text-sm font-jetbrains-mono; } @@ -45,18 +54,18 @@ .dotted-background { background-image: radial-gradient(circle, rgba(134, 122, 69, 0.219) 4px, transparent 0); - background-size: 50px 50px; - animation: moveDots 85s linear infinite; /* Apply the animation */ + background-size: 75px 75px; + animation: moveDots 2s linear infinite; /* Apply the animation */ @apply absolute transform -translate-x-1/2 -translate-y-1/2 blur-sm w-[400vw] h-[400vh] -z-50; } /* Keyframes to move the dots to the right */ @keyframes moveDots { 0% { - background-position: 0 25%; - } + background-position: 0px 0px; + } 100% { - background-position: 100% 75%; + background-position: 75px 75px; } } }