Changes to helloworld.scroll.pub

root
root
16 days ago
Initial commit
body.html
Changed around line 1
+
+
+

Hello World

+
+
+
+
+
+
+
+

Made with ❤️ by the Scroll community

+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://helloworld.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Hello World - A Colorful and Creative Experience
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "9cab7a02-7fd1-4092-8ad9-3319f26a7ecf",
+ "object": "chat.completion",
+ "created": 1736131979,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nhelloworld.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://helloworld.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Hello World - A Colorful and Creative Experience\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n
\n
\n

Hello World

\n
\n
\n
\n
\n
\n
\n
\n

Made with ❤️ by the Scroll community

\n
\n
\n\n---style.css---\n:root {\n --primary-color: #ff6b6b;\n --secondary-color: #4ecdc4;\n --tertiary-color: #ffe66d;\n --background-color: #1a1a1a;\n --text-color: #ffffff;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n background-color: var(--background-color);\n color: var(--text-color);\n font-family: 'Arial', sans-serif;\n min-height: 100vh;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.container {\n text-align: center;\n padding: 2rem;\n}\n\n.hero {\n position: relative;\n overflow: hidden;\n padding: 2rem;\n border-radius: 20px;\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);\n}\n\n.title {\n font-size: 4rem;\n font-weight: bold;\n margin-bottom: 2rem;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);\n}\n\n.animation-container {\n position: relative;\n height: 200px;\n width: 100%;\n}\n\n.circle {\n position: absolute;\n border-radius: 50%;\n animation: float 6s infinite ease-in-out;\n}\n\n.circle-1 {\n width: 100px;\n height: 100px;\n background-color: var(--tertiary-color);\n top: 20%;\n left: 10%;\n animation-delay: 0s;\n}\n\n.circle-2 {\n width: 80px;\n height: 80px;\n background-color: var(--primary-color);\n top: 50%;\n left: 50%;\n animation-delay: 2s;\n}\n\n.circle-3 {\n width: 120px;\n height: 120px;\n background-color: var(--secondary-color);\n top: 10%;\n left: 70%;\n animation-delay: 4s;\n}\n\n@keyframes float {\n 0%, 100% {\n transform: translateY(0);\n }\n 50% {\n transform: translateY(-20px);\n }\n}\n\n.footer {\n margin-top: 2rem;\n font-size: 0.9rem;\n color: rgba(255, 255, 255, 0.7);\n}\n\n@media (max-width: 768px) {\n .title {\n font-size: 3rem;\n }\n\n .circle-1, .circle-2, .circle-3 {\n width: 80px;\n height: 80px;\n }\n}\n\n---script.js---\n// No JavaScript needed for this simple page\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 249,
+ "completion_tokens": 813,
+ "total_tokens": 1062,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 249
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+ }
readme.scroll
Changed around line 1
+ # helloworld.scroll.pub
+ Website generated by DeepSeek from prompt: I want a webpage which will print "hello world", be colorful and creative
script.js
Changed around line 1
+ // No JavaScript needed for this simple page
style.css
Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --tertiary-color: #ffe66d;
+ --background-color: #1a1a1a;
+ --text-color: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background-color: var(--background-color);
+ color: var(--text-color);
+ font-family: 'Arial', sans-serif;
+ min-height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .container {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .hero {
+ position: relative;
+ overflow: hidden;
+ padding: 2rem;
+ border-radius: 20px;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
+ }
+
+ .title {
+ font-size: 4rem;
+ font-weight: bold;
+ margin-bottom: 2rem;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
+ }
+
+ .animation-container {
+ position: relative;
+ height: 200px;
+ width: 100%;
+ }
+
+ .circle {
+ position: absolute;
+ border-radius: 50%;
+ animation: float 6s infinite ease-in-out;
+ }
+
+ .circle-1 {
+ width: 100px;
+ height: 100px;
+ background-color: var(--tertiary-color);
+ top: 20%;
+ left: 10%;
+ animation-delay: 0s;
+ }
+
+ .circle-2 {
+ width: 80px;
+ height: 80px;
+ background-color: var(--primary-color);
+ top: 50%;
+ left: 50%;
+ animation-delay: 2s;
+ }
+
+ .circle-3 {
+ width: 120px;
+ height: 120px;
+ background-color: var(--secondary-color);
+ top: 10%;
+ left: 70%;
+ animation-delay: 4s;
+ }
+
+ @keyframes float {
+ 0%, 100% {
+ transform: translateY(0);
+ }
+ 50% {
+ transform: translateY(-20px);
+ }
+ }
+
+ .footer {
+ margin-top: 2rem;
+ font-size: 0.9rem;
+ color: rgba(255, 255, 255, 0.7);
+ }
+
+ @media (max-width: 768px) {
+ .title {
+ font-size: 3rem;
+ }
+
+ .circle-1, .circle-2, .circle-3 {
+ width: 80px;
+ height: 80px;
+ }
+ }