diff --git a/assets/favicon.png b/assets/favicon.png deleted file mode 100644 index 4a04bd1..0000000 Binary files a/assets/favicon.png and /dev/null differ diff --git a/assets/only_one.mp3 b/assets/only_one.mp3 deleted file mode 100644 index 87ba767..0000000 Binary files a/assets/only_one.mp3 and /dev/null differ diff --git a/css/main.css b/css/main.css deleted file mode 100644 index 365b206..0000000 --- a/css/main.css +++ /dev/null @@ -1,59 +0,0 @@ -* { - padding: 0; - margin: 0; -} - -body { - background: black; - color: white; - font-family: monospace; - font-size: 13px; -} - -form { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - text-align: center; -} - -input { - display: block; - background: black; - color: white; - width: 250px; - padding: 5px 4px; - margin: 2px 0 6px 0; - border: 1px solid #ff5252; - text-align: center; - font-size: 13px; - font-family: monospace; -} - -input::-ms-reveal, -input::-ms-clear { - display: none; -} - -input[type='submit'] { - width: 150px; -} - -a { - color: #ff5252; - text-decoration: none; -} - -ul { - list-style: none; -} - -.content-main { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - text-align: center; - min-height: 100vh; -} \ No newline at end of file diff --git a/css/rain.css b/css/rain.css deleted file mode 100644 index 9837fbe..0000000 --- a/css/rain.css +++ /dev/null @@ -1,174 +0,0 @@ -html { - height: 100%; -} - -body { - height: 100%; - margin: 0; - overflow: hidden; - background: linear-gradient(to bottom, #202020, #111119); -} - -.rain { - position: absolute; - left: 0; - width: 100%; - height: 100%; - z-index: 2; -} - -.rain.back-row { - display: none; - z-index: 1; - bottom: 60px; - opacity: 0.5; -} - -body.back-row-toggle .rain.back-row { - display: block; -} - -.drop { - position: absolute; - bottom: 100%; - width: 15px; - height: 120px; - pointer-events: none; - animation: drop 0.5s linear infinite; -} - -@keyframes drop { - 0% { - transform: translateY(0vh); - } - - 75% { - transform: translateY(90vh); - } - - 100% { - transform: translateY(90vh); - } -} - -.stem { - width: 1px; - height: 60%; - margin-left: 7px; - background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25)); - animation: stem 0.5s linear infinite; -} - -@keyframes stem { - 0% { - opacity: 1; - } - - 65% { - opacity: 1; - } - - 75% { - opacity: 0; - } - - 100% { - opacity: 0; - } -} - -.splat { - width: 15px; - height: 10px; - border-top: 2px dotted rgba(255, 255, 255, 0.5); - border-radius: 50%; - opacity: 1; - transform: scale(0); - animation: splat 0.5s linear infinite; - display: none; -} - -body.splat-toggle .splat { - display: block; -} - -@keyframes splat { - 0% { - opacity: 1; - transform: scale(0); - } - - 80% { - opacity: 1; - transform: scale(0); - } - - 90% { - opacity: 0.5; - transform: scale(1); - } - - 100% { - opacity: 0; - transform: scale(1.5); - } -} - -.toggles { - position: absolute; - top: 0; - left: 0; - z-index: 3; -} - -.toggle { - position: absolute; - left: 20px; - width: 50px; - height: 50px; - line-height: 51px; - box-sizing: border-box; - text-align: center; - font-family: sans-serif; - font-size: 10px; - font-weight: bold; - background-color: rgba(255, 255, 255, 0.2); - color: rgba(0, 0, 0, 0.5); - border-radius: 50%; - cursor: pointer; - transition: background-color 0.3s; -} - -.toggle:hover { - background-color: rgba(255, 255, 255, 0.25); -} - -.toggle:active { - background-color: rgba(255, 255, 255, 0.3); -} - -.toggle.active { - background-color: rgba(255, 255, 255, 0.4); -} - -.splat-toggle { - top: 20px; -} - -.back-row-toggle { - top: 90px; - line-height: 12px; - padding-top: 14px; -} - -.single-toggle { - top: 160px; -} - -body.single-toggle .drop { - display: none; -} - -body.single-toggle .drop:nth-child(10) { - display: block; -} \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index fffe52e..0000000 --- a/index.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - -
-

root@igna.rocks


-

Hi, I'm Ignacio, a 13-year-old developer who likes anime and code stuff


-

igna#9864 | discord | bio | steam | instances -

-

- - - - - \ No newline at end of file diff --git a/instances.html b/instances.html deleted file mode 100644 index 58320b2..0000000 --- a/instances.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - -
-

instances@igna.rocks


-

Instances list:


-

Donations | Libreddit | Lingva -

-

- - - \ No newline at end of file diff --git a/js/AnimatedTitle.js b/js/AnimatedTitle.js deleted file mode 100644 index 73a6f4e..0000000 --- a/js/AnimatedTitle.js +++ /dev/null @@ -1,34 +0,0 @@ -var rev = "a"; - -function titlebar(val) { - var msg = "i g n a . r o c k s"; - var res = " "; - var speed = 300; - var pos = val; - msg = msg; - var le = msg.length; - if (rev == "a") { - if (pos < le) { - pos = pos + 1; - scroll = msg.substr(0, pos); - document.title = scroll; - timer = window.setTimeout("titlebar(" + pos + ")", speed); - } else { - rev = "b"; - timer = window.setTimeout("titlebar(" + pos + ")", speed); - } - } else { - if (pos > 0) { - pos = pos - 1; - var ale = le - pos; - scrol = msg.substr(ale, le); - document.title = scrol; - timer = window.setTimeout("titlebar(" + pos + ")", speed); - } else { - rev = "fwd"; - timer = window.setTimeout("titlebar(" + pos + ")", speed); - } - } -} -titlebar(0); -document.addEventListener('contextmenu', event => event.preventDefault()); \ No newline at end of file diff --git a/js/rain.js b/js/rain.js deleted file mode 100644 index fed3dd6..0000000 --- a/js/rain.js +++ /dev/null @@ -1,44 +0,0 @@ -var makeItRain = function () { - //clear out everything - $('.rain').empty(); - - var increment = 0; - var drops = ""; - var backDrops = ""; - - while (increment < 100) { - //couple random numbers to use for various randomizations - //random number between 98 and 1 - var randoHundo = (Math.floor(Math.random() * (98 - 1 + 1) + 1)); - //random number between 5 and 2 - var randoFiver = (Math.floor(Math.random() * (5 - 2 + 1) + 2)); - //increment - increment += randoFiver; - //add in a new raindrop with various randomizations to certain CSS properties - drops += '
'; - backDrops += '
'; - } - - $('.rain.front-row').append(drops); - $('.rain.back-row').append(backDrops); -} - -$('.splat-toggle.toggle').on('click', function () { - $('body').toggleClass('splat-toggle'); - $('.splat-toggle.toggle').toggleClass('active'); - makeItRain(); -}); - -$('.back-row-toggle.toggle').on('click', function () { - $('body').toggleClass('back-row-toggle'); - $('.back-row-toggle.toggle').toggleClass('active'); - makeItRain(); -}); - -$('.single-toggle.toggle').on('click', function () { - $('body').toggleClass('single-toggle'); - $('.single-toggle.toggle').toggleClass('active'); - makeItRain(); -}); - -makeItRain(); \ No newline at end of file