Changes to notme.fun.TLD

root
root
6 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://notme.fun
+ metaTags
+ editButton /edit.html
+ title NotMe - Player Select
+ style.css
+
+ header
+ class hero
+ div
+ class hero-content
+ h1 NotMe
+ button
+ id playButton
+ Press Play
+ main
+ class player-select hidden
+ div
+ class player-select-content
+ h2 Player Select
+ div
+ class player-input
+ label Number of Players:
+ for playerCount
+ input
+ type number
+ id playerCount
+ min 1
+ max 10
+ value 1
+ button
+ id startButton
+ Start
+ footer
+ div
+ class footer-content
+ p A simple game setup interface
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "5fb031fe-9bce-468d-975b-6f08ab39ca45",
+ "object": "chat.completion",
+ "created": 1737739548,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nnotme.fun\n---index.scroll---\nbuildHtml\nbaseUrl https://notme.fun\nmetaTags\neditButton /edit.html\ntitle NotMe - Player Select\nstyle.css\n\nheader\n class hero\n div\n class hero-content\n h1 NotMe\n button\n id playButton\n Press Play\nmain\n class player-select hidden\n div\n class player-select-content\n h2 Player Select\n div\n class player-input\n label Number of Players:\n for playerCount\n input\n type number\n id playerCount\n min 1\n max 10\n value 1\n button\n id startButton\n Start\nfooter\n div\n class footer-content\n p A simple game setup interface\nscript.js\n---style.css---\n:root {\n --primary-color: #6d28d9;\n --primary-hover: #5b21b6;\n --background: #f3e8ff;\n --text-color: #1e1b4b;\n --white: #ffffff;\n --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Segoe UI', sans-serif;\n background: var(--background);\n color: var(--text-color);\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n}\n\n.hero {\n flex: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n text-align: center;\n padding: 2rem;\n}\n\n.hero-content h1 {\n font-size: 4rem;\n margin-bottom: 2rem;\n color: var(--primary-color);\n}\n\nbutton {\n background: var(--primary-color);\n color: var(--white);\n border: none;\n padding: 1rem 2rem;\n font-size: 1.2rem;\n border-radius: 0.5rem;\n cursor: pointer;\n transition: all 0.3s ease;\n box-shadow: var(--shadow);\n}\n\nbutton:hover {\n background: var(--primary-hover);\n transform: translateY(-2px);\n}\n\n.player-select {\n flex: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 2rem;\n}\n\n.player-select-content {\n background: var(--white);\n padding: 2rem;\n border-radius: 1rem;\n box-shadow: var(--shadow);\n text-align: center;\n}\n\n.player-select-content h2 {\n margin-bottom: 1.5rem;\n color: var(--primary-color);\n}\n\n.player-input {\n margin-bottom: 1.5rem;\n}\n\n.player-input label {\n display: block;\n margin-bottom: 0.5rem;\n}\n\n.player-input input {\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 0.25rem;\n width: 100%;\n max-width: 200px;\n}\n\n.hidden {\n display: none;\n}\n\n.footer-content {\n text-align: center;\n padding: 1rem;\n background: var(--white);\n box-shadow: var(--shadow);\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 3rem;\n }\n \n button {\n padding: 0.8rem 1.5rem;\n font-size: 1rem;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n const playButton = document.getElementById('playButton');\n const playerSelect = document.querySelector('.player-select');\n const startButton = document.getElementById('startButton');\n const playerCountInput = document.getElementById('playerCount');\n\n playButton.addEventListener('click', () => {\n document.querySelector('.hero').classList.add('hidden');\n playerSelect.classList.remove('hidden');\n });\n\n startButton.addEventListener('click', () => {\n const playerCount = parseInt(playerCountInput.value);\n if (playerCount > 0 && playerCount <= 10) {\n alert(`Starting game with ${playerCount} players!`);\n // Add your game start logic here\n } else {\n alert('Please enter a valid number of players (1-10)');\n }\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 753,
+ "completion_tokens": 965,
+ "total_tokens": 1718,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 753
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+ }
readme.scroll
Changed around line 1
+ # notme.fun.TLD
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ the 1st page should be notme heading with the button press play and after you click press play you get to the player select , where you can add the number of players with the button start
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "the 1st page should be notme heading with the button press play and after you click press play you get to the player select , where you can add the number of players with the button start"
+
+ 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 TLD that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainTLD here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainTLD 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', () => {
+ const playButton = document.getElementById('playButton');
+ const playerSelect = document.querySelector('.player-select');
+ const startButton = document.getElementById('startButton');
+ const playerCountInput = document.getElementById('playerCount');
+
+ playButton.addEventListener('click', () => {
+ document.querySelector('.hero').classList.add('hidden');
+ playerSelect.classList.remove('hidden');
+ });
+
+ startButton.addEventListener('click', () => {
+ const playerCount = parseInt(playerCountInput.value);
+ if (playerCount > 0 && playerCount <= 10) {
+ alert(`Starting game with ${playerCount} players!`);
+ // Add your game start logic here
+ } else {
+ alert('Please enter a valid number of players (1-10)');
+ }
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #6d28d9;
+ --primary-hover: #5b21b6;
+ --background: #f3e8ff;
+ --text-color: #1e1b4b;
+ --white: #ffffff;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ background: var(--background);
+ color: var(--text-color);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .hero {
+ flex: 1;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 2rem;
+ color: var(--primary-color);
+ }
+
+ button {
+ background: var(--primary-color);
+ color: var(--white);
+ border: none;
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ box-shadow: var(--shadow);
+ }
+
+ button:hover {
+ background: var(--primary-hover);
+ transform: translateY(-2px);
+ }
+
+ .player-select {
+ flex: 1;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ }
+
+ .player-select-content {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ text-align: center;
+ }
+
+ .player-select-content h2 {
+ margin-bottom: 1.5rem;
+ color: var(--primary-color);
+ }
+
+ .player-input {
+ margin-bottom: 1.5rem;
+ }
+
+ .player-input label {
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+
+ .player-input input {
+ padding: 0.5rem;
+ border: 1px solid #ddd;
+ border-radius: 0.25rem;
+ width: 100%;
+ max-width: 200px;
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ .footer-content {
+ text-align: center;
+ padding: 1rem;
+ background: var(--white);
+ box-shadow: var(--shadow);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 3rem;
+ }
+
+ button {
+ padding: 0.8rem 1.5rem;
+ font-size: 1rem;
+ }
+ }