Changes to amorcorazon.scroll.pub

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

Amor y Corazón

+

Una tarjeta especial para mi amor

+
+
+
+
+ Corazón
+
+

我爱你

+

Te amo

+
+
+
+
+

你是我的一切

+

Eres mi todo

+
+
+
+
+

Con todo mi cariño

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://amorcorazon.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Amor y Corazón - Una Tarjeta Especial
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "10014bd8-ec45-406e-8b8e-8ccaa4c5e7a7",
+ "object": "chat.completion",
+ "created": 1735656940,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\namorcorazon.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://amorcorazon.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Amor y Corazón - Una Tarjeta Especial\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

Amor y Corazón

\n

Una tarjeta especial para mi amor

\n
\n
\n
\n
\n \"Corazón\"\n
\n

我爱你

\n

Te amo

\n
\n
\n \n
\n

你是我的一切

\n

Eres mi todo

\n
\n
\n
\n
\n

Con todo mi cariño

\n
\n---style.css---\nbody {\n font-family: 'Georgia', serif;\n margin: 0;\n padding: 0;\n background: linear-gradient(135deg, #ff7eb3, #ff758c);\n color: #fff;\n text-align: center;\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\nheader {\n padding: 2rem;\n}\n\nh1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\n.card {\n background: rgba(255, 255, 255, 0.1);\n border-radius: 15px;\n padding: 2rem;\n margin: 2rem auto;\n max-width: 400px;\n backdrop-filter: blur(10px);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);\n}\n\n.heart-image {\n width: 100px;\n height: auto;\n margin-bottom: 1rem;\n animation: pulse 2s infinite;\n}\n\n.message {\n font-size: 1.5rem;\n}\n\n.chinese {\n font-family: 'SimSun', serif;\n margin-bottom: 1rem;\n}\n\n.spanish {\n font-style: italic;\n}\n\nbutton {\n background: #fff;\n color: #ff7eb3;\n border: none;\n padding: 1rem 2rem;\n border-radius: 25px;\n font-size: 1rem;\n cursor: pointer;\n transition: all 0.3s ease;\n}\n\nbutton:hover {\n transform: scale(1.1);\n box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n}\n\n.hidden {\n display: none;\n}\n\nfooter {\n padding: 1rem;\n}\n\n@keyframes pulse {\n 0% { transform: scale(1); }\n 50% { transform: scale(1.1); }\n 100% { transform: scale(1); }\n}\n\n@media (max-width: 600px) {\n h1 {\n font-size: 2rem;\n }\n\n .card {\n padding: 1rem;\n }\n\n .message {\n font-size: 1.2rem;\n }\n}\n---script.js---\ndocument.getElementById('revealButton').addEventListener('click', function() {\n const hiddenMessage = document.getElementById('hiddenMessage');\n hiddenMessage.classList.toggle('hidden');\n this.textContent = hiddenMessage.classList.contains('hidden') ? '¡Haz clic para revelar más!' : '¡Gracias por tu amor!';\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 266,
+ "completion_tokens": 855,
+ "total_tokens": 1121,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 266
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # amorcorazon.scroll.pub
+ Website generated by DeepSeek from prompt: A website showing a new greeting card to my Spanish lover. It should have written words in Chinese and Spanish. It should have images and interactivity. Be creative
script.js
Changed around line 1
+ document.getElementById('revealButton').addEventListener('click', function() {
+ const hiddenMessage = document.getElementById('hiddenMessage');
+ hiddenMessage.classList.toggle('hidden');
+ this.textContent = hiddenMessage.classList.contains('hidden') ? '¡Haz clic para revelar más!' : '¡Gracias por tu amor!';
+ });
style.css
Changed around line 1
+ body {
+ font-family: 'Georgia', serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #ff7eb3, #ff758c);
+ color: #fff;
+ text-align: center;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ header {
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .card {
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 15px;
+ padding: 2rem;
+ margin: 2rem auto;
+ max-width: 400px;
+ backdrop-filter: blur(10px);
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
+ }
+
+ .heart-image {
+ width: 100px;
+ height: auto;
+ margin-bottom: 1rem;
+ animation: pulse 2s infinite;
+ }
+
+ .message {
+ font-size: 1.5rem;
+ }
+
+ .chinese {
+ font-family: 'SimSun', serif;
+ margin-bottom: 1rem;
+ }
+
+ .spanish {
+ font-style: italic;
+ }
+
+ button {
+ background: #fff;
+ color: #ff7eb3;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ button:hover {
+ transform: scale(1.1);
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ footer {
+ padding: 1rem;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.1); }
+ 100% { transform: scale(1); }
+ }
+
+ @media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .card {
+ padding: 1rem;
+ }
+
+ .message {
+ font-size: 1.2rem;
+ }
+ }