Changes to trumproast.scroll.pub

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

Trump Roast

+

A curated collection of satirical social media images

+
+
+
+
+
+ Satirical meme about Donald Trump
+

"When you promise to drain the swamp but become the swamp"

+
+
+ Humorous MAGA parody image
+

"MAGA: Making Attorneys Get Attorneys"

+
+
+ Political cartoon mocking Trump
+

"The Art of the Steal: A Modern Masterpiece"

+
+
+
+
+
+

Disclaimer: This site is for entertainment purposes only. All images are satirical in nature.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://trumproast.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Trump Roast - A Collection of Satirical MAGA Memes
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "f14e3ad9-1db6-409e-b743-a537a82b6fa4",
+ "object": "chat.completion",
+ "created": 1735317328,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ntrumproast.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://trumproast.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Trump Roast - A Collection of Satirical MAGA Memes\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

Trump Roast

\n

A curated collection of satirical social media images

\n
\n\n
\n
\n
\n \"Satirical\n

\"When you promise to drain the swamp but become the swamp\"

\n
\n
\n \"Humorous\n

\"MAGA: Making Attorneys Get Attorneys\"

\n
\n
\n \"Political\n

\"The Art of the Steal: A Modern Masterpiece\"

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

Disclaimer: This site is for entertainment purposes only. All images are satirical in nature.

\n
\n---style.css---\n:root {\n --primary-color: #ff4444;\n --secondary-color: #333;\n --background-color: #f5f5f5;\n --text-color: #222;\n}\n\nbody {\n font-family: 'Helvetica Neue', Arial, sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: var(--background-color);\n color: var(--text-color);\n}\n\nheader {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nh1 {\n font-size: 2.5rem;\n margin: 0;\n}\n\np {\n margin: 0.5rem 0;\n}\n\n.gallery {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.gallery-item {\n background: white;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n overflow: hidden;\n transition: transform 0.3s ease;\n}\n\n.gallery-item:hover {\n transform: translateY(-5px);\n}\n\n.gallery-item img {\n width: 100%;\n height: auto;\n display: block;\n}\n\n.caption {\n padding: 1rem;\n font-style: italic;\n color: var(--secondary-color);\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--secondary-color);\n color: white;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n \n .gallery {\n grid-template-columns: 1fr;\n padding: 1rem;\n }\n}\n---script.js---\n// Smooth scroll to top button\nconst scrollToTop = document.createElement('button');\nscrollToTop.textContent = '↑';\nscrollToTop.style.position = 'fixed';\nscrollToTop.style.bottom = '20px';\nscrollToTop.style.right = '20px';\nscrollToTop.style.padding = '10px 15px';\nscrollToTop.style.backgroundColor = 'var(--primary-color)';\nscrollToTop.style.color = 'white';\nscrollToTop.style.border = 'none';\nscrollToTop.style.borderRadius = '50%';\nscrollToTop.style.cursor = 'pointer';\nscrollToTop.style.display = 'none';\nscrollToTop.style.zIndex = '1000';\n\ndocument.body.appendChild(scrollToTop);\n\nwindow.addEventListener('scroll', () => {\n if (window.scrollY > 300) {\n scrollToTop.style.display = 'block';\n } else {\n scrollToTop.style.display = 'none';\n }\n});\n\nscrollToTop.addEventListener('click', () => {\n window.scrollTo({\n top: 0,\n behavior: 'smooth'\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 256,
+ "completion_tokens": 960,
+ "total_tokens": 1216,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 256
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # trumproast.scroll.pub
+ Website generated by DeepSeek from prompt: I want a website that compiles insulting social media images depicting Donald Trump and MAGA in a negative light.
script.js
Changed around line 1
+ // Smooth scroll to top button
+ const scrollToTop = document.createElement('button');
+ scrollToTop.textContent = '↑';
+ scrollToTop.style.position = 'fixed';
+ scrollToTop.style.bottom = '20px';
+ scrollToTop.style.right = '20px';
+ scrollToTop.style.padding = '10px 15px';
+ scrollToTop.style.backgroundColor = 'var(--primary-color)';
+ scrollToTop.style.color = 'white';
+ scrollToTop.style.border = 'none';
+ scrollToTop.style.borderRadius = '50%';
+ scrollToTop.style.cursor = 'pointer';
+ scrollToTop.style.display = 'none';
+ scrollToTop.style.zIndex = '1000';
+
+ document.body.appendChild(scrollToTop);
+
+ window.addEventListener('scroll', () => {
+ if (window.scrollY > 300) {
+ scrollToTop.style.display = 'block';
+ } else {
+ scrollToTop.style.display = 'none';
+ }
+ });
+
+ scrollToTop.addEventListener('click', () => {
+ window.scrollTo({
+ top: 0,
+ behavior: 'smooth'
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #ff4444;
+ --secondary-color: #333;
+ --background-color: #f5f5f5;
+ --text-color: #222;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin: 0;
+ }
+
+ p {
+ margin: 0.5rem 0;
+ }
+
+ .gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .gallery-item {
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ overflow: hidden;
+ transition: transform 0.3s ease;
+ }
+
+ .gallery-item:hover {
+ transform: translateY(-5px);
+ }
+
+ .gallery-item img {
+ width: 100%;
+ height: auto;
+ display: block;
+ }
+
+ .caption {
+ padding: 1rem;
+ font-style: italic;
+ color: var(--secondary-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--secondary-color);
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .gallery {
+ grid-template-columns: 1fr;
+ padding: 1rem;
+ }
+ }