Changes to flixscroll.pub.scroll.pub

ScrollHub
ScrollHub
25 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://flixscroll.pub
+ metaTags
+ editButton /edit.html
+ title FlixScroll - Netflix Clone
+ style.css
+ header
+ class navbar
+ div
+ class container
+ div
+ class logo
+ a FlixScroll
+ href /
+ nav
+ class nav-links
+ a Home
+ href #
+ a TV Shows
+ href #
+ a Movies
+ href #
+ a New & Popular
+ href #
+ a My List
+ href #
+ div
+ class user-menu
+ div
+ class search-icon
+ 🔍
+ div
+ class notifications
+ 🔔
+ div
+ class avatar
+ img
+ src /avatar.png
+ alt User Avatar
+ main
+ section
+ class hero
+ div
+ class hero-content
+ div
+ class hero-info
+ h1 Stranger Things
+ p When a young boy vanishes, a small town uncovers a mystery involving secret experiments, terrifying supernatural forces, and one strange little girl.
+ div
+ class hero-buttons
+ a Play
+ class primary-button
+ a More Info
+ class secondary-button
+ section
+ class content-row
+ h2 Popular on FlixScroll
+ div
+ class content-grid
+ div
+ class content-card
+ img
+ src /show1.jpg
+ alt The Crown
+ div
+ class content-card
+ img
+ src /show2.jpg
+ alt Money Heist
+ div
+ class content-card
+ img
+ src /show3.jpg
+ alt The Witcher
+ div
+ class content-card
+ img
+ src /show4.jpg
+ alt Dark
+ div
+ class content-card
+ img
+ src /show5.jpg
+ alt Ozark
+ section
+ class content-row
+ h2 Trending Now
+ div
+ class content-grid
+ div
+ class content-card
+ img
+ src /movie1.jpg
+ alt Extraction
+ div
+ class content-card
+ img
+ src /movie2.jpg
+ alt The Irishman
+ div
+ class content-card
+ img
+ src /movie3.jpg
+ alt Bird Box
+ div
+ class content-card
+ img
+ src /movie4.jpg
+ alt The Social Dilemma
+ div
+ class content-card
+ img
+ src /movie5.jpg
+ alt Enola Holmes
+ footer
+ class footer
+ div
+ class container
+ div
+ class footer-links
+ div
+ class link-column
+ h3 Company
+ a About Us
+ href #
+ a Jobs
+ href #
+ a Contact
+ href #
+ div
+ class link-column
+ h3 Help
+ a Account
+ href #
+ a Plans
+ href #
+ a FAQ
+ href #
+ div
+ class link-column
+ h3 Legal
+ a Privacy
+ href #
+ a Terms
+ href #
+ a Cookies
+ href #
+ div
+ class language-selector
+ select
+ option English
+ option Español
+ option Français
+ option Deutsch
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "5646da3a-194b-4ffe-960a-9812b8667676",
+ "object": "chat.completion",
+ "created": 1749896718,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Here's a Netflix clone using Scroll, with a clean design and responsive layout:\n\n---domain---\nflixscroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://flixscroll.pub\nmetaTags\neditButton /edit.html\ntitle FlixScroll - Netflix Clone\nstyle.css\nheader\n class navbar\n div\n class container\n div\n class logo\n a FlixScroll\n href /\n nav\n class nav-links\n a Home\n href #\n a TV Shows\n href #\n a Movies\n href #\n a New & Popular\n href #\n a My List\n href #\n div\n class user-menu\n div\n class search-icon\n 🔍\n div\n class notifications\n 🔔\n div\n class avatar\n img\n src /avatar.png\n alt User Avatar\nmain\n section\n class hero\n div\n class hero-content\n div\n class hero-info\n h1 Stranger Things\n p When a young boy vanishes, a small town uncovers a mystery involving secret experiments, terrifying supernatural forces, and one strange little girl.\n div\n class hero-buttons\n a Play\n class primary-button\n a More Info\n class secondary-button\n section\n class content-row\n h2 Popular on FlixScroll\n div\n class content-grid\n div\n class content-card\n img\n src /show1.jpg\n alt The Crown\n div\n class content-card\n img\n src /show2.jpg\n alt Money Heist\n div\n class content-card\n img\n src /show3.jpg\n alt The Witcher\n div\n class content-card\n img\n src /show4.jpg\n alt Dark\n div\n class content-card\n img\n src /show5.jpg\n alt Ozark\n section\n class content-row\n h2 Trending Now\n div\n class content-grid\n div\n class content-card\n img\n src /movie1.jpg\n alt Extraction\n div\n class content-card\n img\n src /movie2.jpg\n alt The Irishman\n div\n class content-card\n img\n src /movie3.jpg\n alt Bird Box\n div\n class content-card\n img\n src /movie4.jpg\n alt The Social Dilemma\n div\n class content-card\n img\n src /movie5.jpg\n alt Enola Holmes\nfooter\n class footer\n div\n class container\n div\n class footer-links\n div\n class link-column\n h3 Company\n a About Us\n href #\n a Jobs\n href #\n a Contact\n href #\n div\n class link-column\n h3 Help\n a Account\n href #\n a Plans\n href #\n a FAQ\n href #\n div\n class link-column\n h3 Legal\n a Privacy\n href #\n a Terms\n href #\n a Cookies\n href #\n div\n class language-selector\n select\n option English\n option Español\n option Français\n option Deutsch\nscript.js\n---style.css---\n:root {\n --primary: #e50914;\n --dark: #141414;\n --light: #f3f3f3;\n --gray: #999;\n --transition: all 0.3s ease;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Helvetica Neue', Arial, sans-serif;\n background: var(--dark);\n color: var(--light);\n line-height: 1.4;\n}\n\na {\n color: var(--light);\n text-decoration: none;\n}\n\nimg {\n width: 100%;\n display: block;\n}\n\n.container {\n max-width: 1200px;\n margin: 0 auto;\n padding: 0 20px;\n}\n\n/* Navbar */\n.navbar {\n position: fixed;\n top: 0;\n width: 100%;\n padding: 20px 0;\n z-index: 100;\n background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);\n transition: var(--transition);\n}\n\n.navbar.scrolled {\n background: var(--dark);\n}\n\n.navbar .container {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.logo {\n font-size: 2rem;\n font-weight: bold;\n color: var(--primary);\n}\n\n.nav-links {\n display: flex;\n gap: 20px;\n}\n\n.nav-links a {\n font-size: 0.9rem;\n transition: var(--transition);\n}\n\n.nav-links a:hover {\n color: var(--gray);\n}\n\n.user-menu {\n display: flex;\n align-items: center;\n gap: 20px;\n}\n\n.search-icon, .notifications {\n font-size: 1.2rem;\n cursor: pointer;\n}\n\n.avatar img {\n width: 32px;\n height: 32px;\n border-radius: 4px;\n}\n\n/* Hero */\n.hero {\n height: 100vh;\n background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/hero-bg.jpg') no-repeat center center/cover;\n display: flex;\n align-items: center;\n position: relative;\n margin-top: -80px;\n}\n\n.hero-content {\n max-width: 600px;\n}\n\n.hero-info h1 {\n font-size: 3rem;\n margin-bottom: 20px;\n}\n\n.hero-info p {\n font-size: 1.2rem;\n margin-bottom: 20px;\n}\n\n.hero-buttons {\n display: flex;\n gap: 10px;\n}\n\n.primary-button, .secondary-button {\n padding: 10px 25px;\n border-radius: 4px;\n font-weight: bold;\n transition: var(--transition);\n}\n\n.primary-button {\n background: var(--primary);\n color: white;\n}\n\n.secondary-button {\n background: rgba(109, 109, 110, 0.7);\n color: white;\n}\n\n.primary-button:hover, .secondary-button:hover {\n opacity: 0.8;\n}\n\n/* Content Rows */\n.content-row {\n padding: 40px 0;\n}\n\n.content-row h2 {\n margin-bottom: 20px;\n font-size: 1.5rem;\n}\n\n.content-grid {\n display: grid;\n grid-template-columns: repeat(5, 1fr);\n gap: 10px;\n}\n\n.content-card {\n transition: var(--transition);\n cursor: pointer;\n}\n\n.content-card:hover {\n transform: scale(1.05);\n}\n\n/* Footer */\n.footer {\n padding: 50px 0 30px;\n background: rgba(0,0,0,0.8);\n}\n\n.footer-links {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 30px;\n margin-bottom: 30px;\n}\n\n.link-column h3 {\n margin-bottom: 15px;\n color: var(--gray);\n}\n\n.link-column a {\n display: block;\n margin-bottom: 10px;\n font-size: 0.9rem;\n color: var(--gray);\n}\n\n.link-column a:hover {\n text-decoration: underline;\n}\n\n.language-selector select {\n background: transparent;\n color: var(--gray);\n padding: 8px;\n border: 1px solid var(--gray);\n border-radius: 4px;\n}\n\n/* Responsive */\n@media (max-width: 768px) {\n .content-grid {\n grid-template-columns: repeat(3, 1fr);\n }\n \n .nav-links {\n display: none;\n }\n \n .hero-info h1 {\n font-size: 2rem;\n }\n \n .hero-info p {\n font-size: 1rem;\n }\n}\n\n@media (max-width: 480px) {\n .content-grid {\n grid-template-columns: repeat(2, 1fr);\n }\n \n .hero-buttons {\n flex-direction: column;\n }\n \n .footer-links {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Navbar scroll effect\n const navbar = document.querySelector('.navbar');\n \n window.addEventListener('scroll', function() {\n if (window.scrollY > 100) {\n navbar.classList.add('scrolled');\n } else {\n navbar.classList.remove('scrolled');\n }\n });\n \n // Content card hover effect\n const contentCards = document.querySelectorAll('.content-card');\n \n contentCards.forEach(card => {\n card.addEventListener('mouseenter', function() {\n this.style.zIndex = '10';\n });\n \n card.addEventListener('mouseleave', function() {\n this.style.zIndex = '1';\n });\n });\n \n // Search icon click\n const searchIcon = document.querySelector('.search-icon');\n \n searchIcon.addEventListener('click', function() {\n alert('Search functionality would go here');\n });\n \n // Notification icon click\n const notifications = document.querySelector('.notifications');\n \n notifications.addEventListener('click', function() {\n alert('Notifications would appear here');\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 720,
+ "completion_tokens": 2095,
+ "total_tokens": 2815,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 720
+ },
+ "system_fingerprint": "fp_8802369eaa_prod0425fp8"
+ }
readme.scroll
Changed around line 1
+ # flixscroll.pub.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ an netflix clone
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "an netflix clone"
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ // Navbar scroll effect
+ const navbar = document.querySelector('.navbar');
+
+ window.addEventListener('scroll', function() {
+ if (window.scrollY > 100) {
+ navbar.classList.add('scrolled');
+ } else {
+ navbar.classList.remove('scrolled');
+ }
+ });
+
+ // Content card hover effect
+ const contentCards = document.querySelectorAll('.content-card');
+
+ contentCards.forEach(card => {
+ card.addEventListener('mouseenter', function() {
+ this.style.zIndex = '10';
+ });
+
+ card.addEventListener('mouseleave', function() {
+ this.style.zIndex = '1';
+ });
+ });
+
+ // Search icon click
+ const searchIcon = document.querySelector('.search-icon');
+
+ searchIcon.addEventListener('click', function() {
+ alert('Search functionality would go here');
+ });
+
+ // Notification icon click
+ const notifications = document.querySelector('.notifications');
+
+ notifications.addEventListener('click', function() {
+ alert('Notifications would appear here');
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #e50914;
+ --dark: #141414;
+ --light: #f3f3f3;
+ --gray: #999;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ background: var(--dark);
+ color: var(--light);
+ line-height: 1.4;
+ }
+
+ a {
+ color: var(--light);
+ text-decoration: none;
+ }
+
+ img {
+ width: 100%;
+ display: block;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Navbar */
+ .navbar {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ padding: 20px 0;
+ z-index: 100;
+ background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
+ transition: var(--transition);
+ }
+
+ .navbar.scrolled {
+ background: var(--dark);
+ }
+
+ .navbar .container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 20px;
+ }
+
+ .nav-links a {
+ font-size: 0.9rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--gray);
+ }
+
+ .user-menu {
+ display: flex;
+ align-items: center;
+ gap: 20px;
+ }
+
+ .search-icon, .notifications {
+ font-size: 1.2rem;
+ cursor: pointer;
+ }
+
+ .avatar img {
+ width: 32px;
+ height: 32px;
+ border-radius: 4px;
+ }
+
+ /* Hero */
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/hero-bg.jpg') no-repeat center center/cover;
+ display: flex;
+ align-items: center;
+ position: relative;
+ margin-top: -80px;
+ }
+
+ .hero-content {
+ max-width: 600px;
+ }
+
+ .hero-info h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero-info p {
+ font-size: 1.2rem;
+ margin-bottom: 20px;
+ }
+
+ .hero-buttons {
+ display: flex;
+ gap: 10px;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 10px 25px;
+ border-radius: 4px;
+ font-weight: bold;
+ transition: var(--transition);
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: white;
+ }
+
+ .secondary-button {
+ background: rgba(109, 109, 110, 0.7);
+ color: white;
+ }
+
+ .primary-button:hover, .secondary-button:hover {
+ opacity: 0.8;
+ }
+
+ /* Content Rows */
+ .content-row {
+ padding: 40px 0;
+ }
+
+ .content-row h2 {
+ margin-bottom: 20px;
+ font-size: 1.5rem;
+ }
+
+ .content-grid {
+ display: grid;
+ grid-template-columns: repeat(5, 1fr);
+ gap: 10px;
+ }
+
+ .content-card {
+ transition: var(--transition);
+ cursor: pointer;
+ }
+
+ .content-card:hover {
+ transform: scale(1.05);
+ }
+
+ /* Footer */
+ .footer {
+ padding: 50px 0 30px;
+ background: rgba(0,0,0,0.8);
+ }
+
+ .footer-links {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 30px;
+ margin-bottom: 30px;
+ }
+
+ .link-column h3 {
+ margin-bottom: 15px;
+ color: var(--gray);
+ }
+
+ .link-column a {
+ display: block;
+ margin-bottom: 10px;
+ font-size: 0.9rem;
+ color: var(--gray);
+ }
+
+ .link-column a:hover {
+ text-decoration: underline;
+ }
+
+ .language-selector select {
+ background: transparent;
+ color: var(--gray);
+ padding: 8px;
+ border: 1px solid var(--gray);
+ border-radius: 4px;
+ }
+
+ /* Responsive */
+ @media (max-width: 768px) {
+ .content-grid {
+ grid-template-columns: repeat(3, 1fr);
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .hero-info h1 {
+ font-size: 2rem;
+ }
+
+ .hero-info p {
+ font-size: 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .content-grid {
+ grid-template-columns: repeat(2, 1fr);
+ }
+
+ .hero-buttons {
+ flex-direction: column;
+ }
+
+ .footer-links {
+ grid-template-columns: 1fr;
+ }
+ }