Whisperwind2001 commited on
Commit
adadbd6
·
verified ·
1 Parent(s): ee5a732

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +145 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ivan Sucks
3
- emoji: 🔥
4
- colorFrom: red
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: ivan-sucks
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,145 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>RAINBOW MESSAGE FOR IVAN</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes rainbow {
11
+ 0% { color: red; }
12
+ 14% { color: orange; }
13
+ 28% { color: yellow; }
14
+ 42% { color: green; }
15
+ 57% { color: blue; }
16
+ 71% { color: indigo; }
17
+ 85% { color: violet; }
18
+ 100% { color: red; }
19
+ }
20
+ @keyframes rainbow-bg {
21
+ 0% { background-color: red; }
22
+ 14% { background-color: orange; }
23
+ 28% { background-color: yellow; }
24
+ 42% { background-color: green; }
25
+ 57% { background-color: blue; }
26
+ 71% { background-color: indigo; }
27
+ 85% { background-color: violet; }
28
+ 100% { background-color: red; }
29
+ }
30
+ .rainbow-text {
31
+ animation: rainbow 3s linear infinite;
32
+ }
33
+ .rainbow-bg {
34
+ animation: rainbow-bg 5s linear infinite;
35
+ }
36
+ .rainbow-border {
37
+ border: 5px solid;
38
+ animation: rainbow 5s linear infinite;
39
+ }
40
+ .rainbow-shadow {
41
+ box-shadow: 0 0 20px;
42
+ animation: rainbow 5s linear infinite;
43
+ }
44
+ .text-outline {
45
+ text-shadow:
46
+ -1px -1px 0 #000,
47
+ 1px -1px 0 #000,
48
+ -1px 1px 0 #000,
49
+ 1px 1px 0 #000;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body class="min-h-screen bg-black">
54
+ <div class="container mx-auto px-4 py-8">
55
+ <!-- Main Message -->
56
+ <div class="text-center mb-16">
57
+ <h1 class="text-8xl font-bold rainbow-text text-outline mb-4">I V A N</h1>
58
+ <h2 class="text-6xl font-bold rainbow-text text-outline">IF YOU ARE READING THIS</h2>
59
+ <h3 class="text-6xl font-bold rainbow-text text-outline">YOU SUCK</h3>
60
+ </div>
61
+
62
+ <!-- Rainbow Boxes -->
63
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
64
+ <div class="rainbow-border p-8 rounded-lg text-center">
65
+ <i class="fas fa-poo text-6xl rainbow-text mb-4"></i>
66
+ <p class="text-2xl rainbow-text font-bold">YOU SMELL</p>
67
+ </div>
68
+ <div class="rainbow-border p-8 rounded-lg text-center">
69
+ <i class="fas fa-thumbs-down text-6xl rainbow-text mb-4"></i>
70
+ <p class="text-2xl rainbow-text font-bold">YOU'RE LAME</p>
71
+ </div>
72
+ <div class="rainbow-border p-8 rounded-lg text-center">
73
+ <i class="fas fa-skull text-6xl rainbow-text mb-4"></i>
74
+ <p class="text-2xl rainbow-text font-bold">YOU'RE DEAD TO US</p>
75
+ </div>
76
+ </div>
77
+
78
+ <!-- Spinning Rainbow Wheel -->
79
+ <div class="flex justify-center mb-16">
80
+ <div class="w-64 h-64 rounded-full rainbow-border flex items-center justify-center relative overflow-hidden">
81
+ <div class="absolute inset-0 rainbow-bg opacity-50"></div>
82
+ <p class="text-2xl font-bold rainbow-text text-outline z-10">IVAN SUCKS</p>
83
+ <style>
84
+ @keyframes spin {
85
+ 0% { transform: rotate(0deg); }
86
+ 100% { transform: rotate(360deg); }
87
+ }
88
+ .spin {
89
+ animation: spin 10s linear infinite;
90
+ }
91
+ </style>
92
+ <div class="absolute inset-0 flex items-center justify-center spin">
93
+ <div class="w-full h-1 bg-white"></div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+
98
+ <!-- Flashing Warning -->
99
+ <div class="rainbow-bg p-8 rounded-lg mb-16 text-center">
100
+ <h3 class="text-4xl font-bold text-white text-outline mb-4">
101
+ <i class="fas fa-exclamation-triangle"></i> WARNING <i class="fas fa-exclamation-triangle"></i>
102
+ </h3>
103
+ <p class="text-2xl font-bold text-white text-outline">
104
+ IVAN'S EXISTENCE IS A CRIME AGAINST HUMANITY
105
+ </p>
106
+ </div>
107
+
108
+ <!-- Discord Button -->
109
+ <div class="text-center">
110
+ <button id="discord-btn" class="rainbow-bg text-white text-2xl font-bold py-4 px-8 rounded-full rainbow-shadow hover:scale-110 transition-transform duration-300">
111
+ <i class="fab fa-discord mr-2"></i> JOIN THE FUN SERVER
112
+ </button>
113
+ </div>
114
+ </div>
115
+
116
+ <script>
117
+ document.getElementById('discord-btn').addEventListener('click', function() {
118
+ if(confirm("Warning, This discord server has:\n\n- Racism\n- Communism\n- Slavery\n- Bad music\n- The perfect life form Master Leafie\n\nProceed at your own risk!")) {
119
+ window.location.href = "https://discord.gg/eu2ZGC4J";
120
+ }
121
+ });
122
+
123
+ // Make everything rainbow on click
124
+ document.body.addEventListener('click', function() {
125
+ const elements = document.querySelectorAll('div, p, h1, h2, h3, span, button');
126
+ elements.forEach(el => {
127
+ el.classList.add('rainbow-text');
128
+ });
129
+ });
130
+
131
+ // Random rainbow effects
132
+ setInterval(() => {
133
+ const randomElements = document.querySelectorAll('div, p, h1, h2, h3, span, button');
134
+ randomElements.forEach(el => {
135
+ if(Math.random() > 0.7) {
136
+ el.style.color = `hsl(${Math.random() * 360}, 100%, 50%)`;
137
+ }
138
+ if(Math.random() > 0.9) {
139
+ el.style.transform = `rotate(${Math.random() * 10 - 5}deg)`;
140
+ }
141
+ });
142
+ }, 1000);
143
+ </script>
144
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Whisperwind2001/ivan-sucks" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
145
+ </html>
prompts.txt ADDED
File without changes