commit 0ad2047fc02e9a48abe65724745f2c76973dbed2
Author: root <root@hub.scroll.pub> Date: 2024-12-28 09:30:33 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..04cf451 --- /dev/null +++ b/body.html @@ -0,0 +1,23 @@ +<header> + <h1>Lover's Scroll</h1> + <p>A curated collection of intimate encounters.</p> +</header> +<main> + <section id="gallery"> + <div class="collage"> + <img src="images/lover1.jpg" alt="Lover 1"> + <div class="rating">9/10</div> + </div> + <div class="collage"> + <img src="images/lover2.jpg" alt="Lover 2"> + <div class="rating">8/10</div> + </div> + <div class="collage"> + <img src="images/lover3.jpg" alt="Lover 3"> + <div class="rating">7/10</div> + </div> + </section> +</main> +<footer> + <p>Explore the art of intimacy.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..355e217 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://loverscroll.scroll.pub +metaTags +editButton /edit.html +title Lover's Scroll +style.css +body.html +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..503372d --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "bf4f6703-589a-439b-8c97-9edcef6e8c09", + "object": "chat.completion", + "created": 1735378221, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nloverscroll.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://loverscroll.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Lover's Scroll\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Lover's Scroll</h1>\n <p>A curated collection of intimate encounters.</p>\n</header>\n<main>\n <section id=\"gallery\">\n <div class=\"collage\">\n <img src=\"images/lover1.jpg\" alt=\"Lover 1\">\n <div class=\"rating\">9/10</div>\n </div>\n <div class=\"collage\">\n <img src=\"images/lover2.jpg\" alt=\"Lover 2\">\n <div class=\"rating\">8/10</div>\n </div>\n <div class=\"collage\">\n <img src=\"images/lover3.jpg\" alt=\"Lover 3\">\n <div class=\"rating\">7/10</div>\n </div>\n </section>\n</main>\n<footer>\n <p>Explore the art of intimacy.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background: #f4f4f4;\n color: #333;\n}\n\nheader {\n background: #333;\n color: #fff;\n padding: 20px;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5em;\n}\n\nheader p {\n margin: 5px 0 0;\n font-size: 1.2em;\n}\n\nmain {\n padding: 20px;\n}\n\n#gallery {\n display: flex;\n flex-wrap: wrap;\n gap: 20px;\n justify-content: center;\n}\n\n.collage {\n position: relative;\n width: 300px;\n height: 300px;\n overflow: hidden;\n border-radius: 10px;\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);\n}\n\n.collage img {\n width: 100%;\n height: 100%;\n object-fit: cover;\n}\n\n.rating {\n position: absolute;\n bottom: 10px;\n right: 10px;\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n padding: 5px 10px;\n border-radius: 5px;\n font-size: 1.2em;\n}\n\nfooter {\n background: #333;\n color: #fff;\n text-align: center;\n padding: 10px;\n position: fixed;\n width: 100%;\n bottom: 0;\n}\n\n@media (max-width: 768px) {\n .collage {\n width: 100%;\n height: auto;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n const collages = document.querySelectorAll('.collage');\n collages.forEach(collage => {\n collage.addEventListener('click', function() {\n this.classList.toggle('zoomed');\n });\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 273, + "completion_tokens": 715, + "total_tokens": 988, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 273 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..4d36020 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# loverscroll.scroll.pub +Website generated by DeepSeek from prompt: create a website that acts as a portfolio of women I have had sex with, it should include collages of their pictures and each are rated based on how good they were in bed. be creative \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5a48d63 --- /dev/null +++ b/script.js @@ -0,0 +1,8 @@ +document.addEventListener('DOMContentLoaded', function() { + const collages = document.querySelectorAll('.collage'); + collages.forEach(collage => { + collage.addEventListener('click', function() { + this.classList.toggle('zoomed'); + }); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..af6726d --- /dev/null +++ b/style.css @@ -0,0 +1,78 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background: #f4f4f4; + color: #333; +} + +header { + background: #333; + color: #fff; + padding: 20px; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5em; +} + +header p { + margin: 5px 0 0; + font-size: 1.2em; +} + +main { + padding: 20px; +} + +#gallery { + display: flex; + flex-wrap: wrap; + gap: 20px; + justify-content: center; +} + +.collage { + position: relative; + width: 300px; + height: 300px; + overflow: hidden; + border-radius: 10px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); +} + +.collage img { + width: 100%; + height: 100%; + object-fit: cover; +} + +.rating { + position: absolute; + bottom: 10px; + right: 10px; + background: rgba(0, 0, 0, 0.7); + color: #fff; + padding: 5px 10px; + border-radius: 5px; + font-size: 1.2em; +} + +footer { + background: #333; + color: #fff; + text-align: center; + padding: 10px; + position: fixed; + width: 100%; + bottom: 0; +} + +@media (max-width: 768px) { + .collage { + width: 100%; + height: auto; + } +} \ No newline at end of file