Changes to nuevoano.scroll.pub

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

新年快乐

+

¡Feliz Año Nuevo!

+

Que este nuevo año esté lleno de amor, alegría y éxito. Te quiero mucho, mi amor.

+
+
+
+
+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://nuevoano.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Nuevo Año - Greeting Card
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "fabaf6c6-27e2-4f7b-807a-10f776151780",
+ "object": "chat.completion",
+ "created": 1735655181,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nnuevoano.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://nuevoano.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Nuevo Año - Greeting Card\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n
\n

新年快乐

\n

¡Feliz Año Nuevo!

\n

Que este nuevo año esté lleno de amor, alegría y éxito. Te quiero mucho, mi amor.

\n
\n
\n
\n \n
\n
\n---style.css---\nbody {\n margin: 0;\n padding: 0;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100vh;\n background: linear-gradient(135deg, #6a11cb, #2575fc);\n font-family: 'Arial', sans-serif;\n color: white;\n}\n\n.card {\n text-align: center;\n background: rgba(255, 255, 255, 0.1);\n padding: 2rem;\n border-radius: 15px;\n box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);\n backdrop-filter: blur(10px);\n}\n\n.message h1 {\n font-size: 3rem;\n margin: 0;\n}\n\n.message h2 {\n font-size: 2rem;\n margin: 0.5rem 0;\n}\n\n.message .subtext {\n font-size: 1rem;\n margin: 1rem 0;\n}\n\n.interactive {\n margin-top: 2rem;\n}\n\n.purple-circle {\n width: 100px;\n height: 100px;\n background-color: purple;\n border-radius: 50%;\n margin: 0 auto;\n transition: transform 0.5s ease;\n}\n\nbutton {\n margin-top: 1rem;\n padding: 0.5rem 1rem;\n background-color: purple;\n color: white;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n font-size: 1rem;\n}\n\nbutton:hover {\n background-color: #6a11cb;\n}\n\n@media (max-width: 600px) {\n .message h1 {\n font-size: 2rem;\n }\n\n .message h2 {\n font-size: 1.5rem;\n }\n\n .message .subtext {\n font-size: 0.9rem;\n }\n\n .purple-circle {\n width: 80px;\n height: 80px;\n }\n\n button {\n font-size: 0.9rem;\n }\n}\n---script.js---\ndocument.getElementById('animateButton').addEventListener('click', function() {\n const circle = document.getElementById('circle');\n circle.style.transform = 'scale(1.5)';\n setTimeout(() => {\n circle.style.transform = 'scale(1)';\n }, 500);\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 266,
+ "completion_tokens": 725,
+ "total_tokens": 991,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 266
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # nuevoano.scroll.pub
+ Website generated by DeepSeek from prompt: A new year greeting card to my Spanish boyfriend, showing written words in Chinese and Spanish. It should have images in colour purple, and interactivity. Be creative.
script.js
Changed around line 1
+ document.getElementById('animateButton').addEventListener('click', function() {
+ const circle = document.getElementById('circle');
+ circle.style.transform = 'scale(1.5)';
+ setTimeout(() => {
+ circle.style.transform = 'scale(1)';
+ }, 500);
+ });
style.css
Changed around line 1
+ body {
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ background: linear-gradient(135deg, #6a11cb, #2575fc);
+ font-family: 'Arial', sans-serif;
+ color: white;
+ }
+
+ .card {
+ text-align: center;
+ background: rgba(255, 255, 255, 0.1);
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
+ backdrop-filter: blur(10px);
+ }
+
+ .message h1 {
+ font-size: 3rem;
+ margin: 0;
+ }
+
+ .message h2 {
+ font-size: 2rem;
+ margin: 0.5rem 0;
+ }
+
+ .message .subtext {
+ font-size: 1rem;
+ margin: 1rem 0;
+ }
+
+ .interactive {
+ margin-top: 2rem;
+ }
+
+ .purple-circle {
+ width: 100px;
+ height: 100px;
+ background-color: purple;
+ border-radius: 50%;
+ margin: 0 auto;
+ transition: transform 0.5s ease;
+ }
+
+ button {
+ margin-top: 1rem;
+ padding: 0.5rem 1rem;
+ background-color: purple;
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 1rem;
+ }
+
+ button:hover {
+ background-color: #6a11cb;
+ }
+
+ @media (max-width: 600px) {
+ .message h1 {
+ font-size: 2rem;
+ }
+
+ .message h2 {
+ font-size: 1.5rem;
+ }
+
+ .message .subtext {
+ font-size: 0.9rem;
+ }
+
+ .purple-circle {
+ width: 80px;
+ height: 80px;
+ }
+
+ button {
+ font-size: 0.9rem;
+ }
+ }