Changes to loverscroll.scroll.pub

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

Lover's Scroll

+

A curated collection of intimate encounters.

+
+
+
+
+ Lover 1
+
9/10
+
+
+ Lover 2
+
8/10
+
+
+ Lover 3
+
7/10
+
+
+
+
+

Explore the art of intimacy.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://loverscroll.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Lover's Scroll
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "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
\n

Lover's Scroll

\n

A curated collection of intimate encounters.

\n
\n
\n
\n
\n \"Lover\n
9/10
\n
\n
\n \"Lover\n
8/10
\n
\n
\n \"Lover\n
7/10
\n
\n
\n
\n
\n

Explore the art of intimacy.

\n
\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"
+ }
readme.scroll
Changed around line 1
+ # 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
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ const collages = document.querySelectorAll('.collage');
+ collages.forEach(collage => {
+ collage.addEventListener('click', function() {
+ this.classList.toggle('zoomed');
+ });
+ });
+ });
style.css
Changed around line 1
+ 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;
+ }
+ }