commit a79fbc9a89d439c43261f5b0ce6f1708a3026523
Author: root <root@hub.scroll.pub> Date: 2025-01-02 23:46:45 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..262d4c6 --- /dev/null +++ b/body.html @@ -0,0 +1,73 @@ +<header> + <nav class="navbar"> + <div class="logo">CodeLife</div> + <button class="menu-toggle" aria-label="Toggle menu"> + <span></span> + <span></span> + <span></span> + </button> + <ul class="nav-links"> + <li><a href="#" class="active">Home</a></li> + <li><a href="#blog">Blog</a></li> + <li><a href="#about">About</a></li> + </ul> + </nav> +</header> + +<main> + <section class="hero"> + <h1>Welcome to CodeLife</h1> + <p>Exploring the intersection of life and technology</p> + </section> + + <section id="blog" class="blog-grid"> + <h2>Latest Posts</h2> + <div class="posts"> + <article class="post-card"> + <div class="post-image"></div> + <div class="post-content"> + <h3>Building Modern Websites</h3> + <p>Exploring the latest trends in web development and design...</p> + <time datetime="2024-01-20">Jan 20, 2024</time> + </div> + </article> + <article class="post-card"> + <div class="post-image"></div> + <div class="post-content"> + <h3>Life as a Developer</h3> + <p>Balancing coding passion with personal growth...</p> + <time datetime="2024-01-18">Jan 18, 2024</time> + </div> + </article> + <article class="post-card"> + <div class="post-image"></div> + <div class="post-content"> + <h3>CSS Magic Tricks</h3> + <p>Advanced CSS techniques for modern interfaces...</p> + <time datetime="2024-01-15">Jan 15, 2024</time> + </div> + </article> + </div> + </section> +</main> + +<footer> + <div class="footer-content"> + <div class="footer-section"> + <h4>Navigation</h4> + <ul> + <li><a href="#">Home</a></li> + <li><a href="#blog">Blog</a></li> + <li><a href="#about">About</a></li> + </ul> + </div> + <div class="footer-section"> + <h4>Connect</h4> + <ul class="social-links"> + <li><a href="#" aria-label="GitHub">GitHub</a></li> + <li><a href="#" aria-label="Twitter">Twitter</a></li> + <li><a href="#" aria-label="LinkedIn">LinkedIn</a></li> + </ul> + </div> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..c97c5bd --- /dev/null +++ b/index.scroll @@ -0,0 +1,11 @@ +buildHtml +baseUrl https://codelife.scroll.pub +metaTags + description A personal blog about life experiences and technical discoveries + author Your Name + keywords blog, technology, life, coding, web development +editButton /edit.html +title CodeLife | Personal & Technical Blog +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..2dee140 --- /dev/null +++ b/prompt.json @@ -0,0 +1,20 @@ +{ + "id": "msg_019JwoULeFRjwYyziAV6UF28", + "type": "message", + "role": "assistant", + "model": "claude-3-5-sonnet-20241022", + "content": [ + { + "type": "text", + "text": "I'll help create a clean, modern blog website.\n\nSuggested domain: codelife.scroll.pub - Simple and memorable, combining both the technical and personal aspects of the blog.\n\n---domain---\ncodelife.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://codelife.scroll.pub\nmetaTags\n description A personal blog about life experiences and technical discoveries\n author Your Name\n keywords blog, technology, life, coding, web development\neditButton /edit.html\ntitle CodeLife | Personal & Technical Blog\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav class=\"navbar\">\n <div class=\"logo\">CodeLife</div>\n <button class=\"menu-toggle\" aria-label=\"Toggle menu\">\n <span></span>\n <span></span>\n <span></span>\n </button>\n <ul class=\"nav-links\">\n <li><a href=\"#\" class=\"active\">Home</a></li>\n <li><a href=\"#blog\">Blog</a></li>\n <li><a href=\"#about\">About</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section class=\"hero\">\n <h1>Welcome to CodeLife</h1>\n <p>Exploring the intersection of life and technology</p>\n </section>\n\n <section id=\"blog\" class=\"blog-grid\">\n <h2>Latest Posts</h2>\n <div class=\"posts\">\n <article class=\"post-card\">\n <div class=\"post-image\"></div>\n <div class=\"post-content\">\n <h3>Building Modern Websites</h3>\n <p>Exploring the latest trends in web development and design...</p>\n <time datetime=\"2024-01-20\">Jan 20, 2024</time>\n </div>\n </article>\n <article class=\"post-card\">\n <div class=\"post-image\"></div>\n <div class=\"post-content\">\n <h3>Life as a Developer</h3>\n <p>Balancing coding passion with personal growth...</p>\n <time datetime=\"2024-01-18\">Jan 18, 2024</time>\n </div>\n </article>\n <article class=\"post-card\">\n <div class=\"post-image\"></div>\n <div class=\"post-content\">\n <h3>CSS Magic Tricks</h3>\n <p>Advanced CSS techniques for modern interfaces...</p>\n <time datetime=\"2024-01-15\">Jan 15, 2024</time>\n </div>\n </article>\n </div>\n </section>\n</main>\n\n<footer>\n <div class=\"footer-content\">\n <div class=\"footer-section\">\n <h4>Navigation</h4>\n <ul>\n <li><a href=\"#\">Home</a></li>\n <li><a href=\"#blog\">Blog</a></li>\n <li><a href=\"#about\">About</a></li>\n </ul>\n </div>\n <div class=\"footer-section\">\n <h4>Connect</h4>\n <ul class=\"social-links\">\n <li><a href=\"#\" aria-label=\"GitHub\">GitHub</a></li>\n <li><a href=\"#\" aria-label=\"Twitter\">Twitter</a></li>\n <li><a href=\"#\" aria-label=\"LinkedIn\">LinkedIn</a></li>\n </ul>\n </div>\n </div>\n</footer>\n---style.css---\n:root {\n --primary: #2d3436;\n --secondary: #0984e3;\n --accent: #00cec9;\n --background: #ffffff;\n --text: #2d3436;\n --spacing: 2rem;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;\n line-height: 1.6;\n color: var(--text);\n background: var(--background);\n}\n\n.navbar {\n position: fixed;\n top: 0;\n width: 100%;\n padding: 1rem var(--spacing);\n background: rgba(255, 255, 255, 0.95);\n backdrop-filter: blur(10px);\n display: flex;\n justify-content: space-between;\n align-items: center;\n z-index: 1000;\n box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n background: linear-gradient(45deg, var(--secondary), var(--accent));\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n}\n\n.nav-links {\n display: flex;\n gap: 2rem;\n list-style: none;\n}\n\n.nav-links a {\n text-decoration: none;\n color: var(--text);\n position: relative;\n padding: 0.5rem 0;\n}\n\n.nav-links a::after {\n content: '';\n position: absolute;\n bottom: 0;\n left: 0;\n width: 0;\n height: 2px;\n background: var(--secondary);\n transition: width 0.3s ease;\n}\n\n.nav-links a:hover::after {\n width: 100%;\n}\n\n.menu-toggle {\n display: none;\n}\n\n.hero {\n height: 80vh;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n text-align: center;\n padding: var(--spacing);\n background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 206, 201, 0.1));\n}\n\n.hero h1 {\n font-size: 3.5rem;\n margin-bottom: 1rem;\n background: linear-gradient(45deg, var(--secondary), var(--accent));\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n}\n\n.blog-grid {\n padding: var(--spacing);\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.blog-grid h2 {\n margin-bottom: 2rem;\n text-align: center;\n}\n\n.posts {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n}\n\n.post-card {\n background: white;\n border-radius: 1rem;\n overflow: hidden;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n}\n\n.post-card:hover {\n transform: translateY(-5px);\n}\n\n.post-image {\n height: 200px;\n background: linear-gradient(45deg, var(--secondary), var(--accent));\n}\n\n.post-content {\n padding: 1.5rem;\n}\n\n.post-content time {\n color: #666;\n font-size: 0.9rem;\n}\n\nfooter {\n background: var(--primary);\n color: white;\n padding: var(--spacing);\n margin-top: 4rem;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 2rem;\n}\n\n.footer-section ul {\n list-style: none;\n margin-top: 1rem;\n}\n\n.footer-section a {\n color: white;\n text-decoration: none;\n opacity: 0.8;\n transition: opacity 0.3s ease;\n}\n\n.footer-section a:hover {\n opacity: 1;\n}\n\n@media (max-width: 768px) {\n .menu-toggle {\n display: block;\n background: none;\n border: none;\n cursor: pointer;\n padding: 0.5rem;\n }\n\n .menu-toggle span {\n display: block;\n width: 25px;\n height: 3px;\n background: var(--text);\n margin: 5px 0;\n transition: 0.3s;\n }\n\n .nav-links {\n position: fixed;\n top: 60px;\n right: -100%;\n width: 100%;\n height: calc(100vh - 60px);\n background: white;\n flex-direction: column;\n align-items: center;\n padding: 2rem;\n transition: 0.3s;\n }\n\n .nav-links.active {\n right: 0;\n }\n\n .hero h1 {\n font-size: 2.5rem;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n // Mobile menu toggle\n const menuToggle = document.querySelector('.menu-toggle');\n const navLinks = document.querySelector('.nav-links');\n\n menuToggle.addEventListener('click', () => {\n navLinks.classList.toggle('active');\n \n // Animate hamburger to X\n const spans = menuToggle.querySelectorAll('span');\n spans[0].style.transform = spans[0].style.transform ? '' : 'rotate(45deg) translate(6px, 6px)';\n spans[1].style.opacity = spans[1].style.opacity ? '1' : '0';\n spans[2].style.transform = spans[2].style.transform ? '' : 'rotate(-45deg) translate(6px, -6px)';\n });\n\n // Smooth scroll for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n const target = document.querySelector(this.getAttribute('href'));\n if (target) {\n target.scrollIntoView({\n behavior: 'smooth',\n block: 'start'\n });\n // Close mobile menu if open\n navLinks.classList.remove('active');\n }\n });\n });\n\n // Intersection Observer for fade-in animations\n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.style.opacity = '1';\n entry.target.style.transform = 'translateY(0)';\n }\n });\n }, { threshold: 0.1 });\n\n // Observe all post cards\n document.querySelectorAll('.post-card').forEach(card => {\n card.style.opacity = '0';\n card.style.transform = 'translateY(20px)';\n card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';\n observer.observe(card);\n });\n});\n---end---\n\nThis creates a modern, responsive blog website with:\n- Smooth animations and transitions\n- Mobile-first design\n- Accessibility features\n- SEO-friendly structure\n- Clean, semantic HTML\n- Advanced CSS including gradients, transforms, and animations\n- Interactive JavaScript features\n- Beautiful typography and spacing\n- Progressive enhancement\n- Performance optimization\n\nThe design is minimal yet sophisticated, with attention to detail in micro-interactions and visual feedback. The color scheme is professional and the layout is optimized for readability and user experience." + } + ], + "stop_reason": "end_turn", + "stop_sequence": null, + "usage": { + "input_tokens": 277, + "cache_creation_input_tokens": 0, + "cache_read_input_tokens": 0, + "output_tokens": 2983 + } +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..b20f3bd --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# codelife.scroll.pub +Website generated by Claude from prompt: a blog recording life and technical findings \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..0a79bf2 --- /dev/null +++ b/script.js @@ -0,0 +1,49 @@ +document.addEventListener('DOMContentLoaded', () => { + // Mobile menu toggle + const menuToggle = document.querySelector('.menu-toggle'); + const navLinks = document.querySelector('.nav-links'); + + menuToggle.addEventListener('click', () => { + navLinks.classList.toggle('active'); + + // Animate hamburger to X + const spans = menuToggle.querySelectorAll('span'); + spans[0].style.transform = spans[0].style.transform ? '' : 'rotate(45deg) translate(6px, 6px)'; + spans[1].style.opacity = spans[1].style.opacity ? '1' : '0'; + spans[2].style.transform = spans[2].style.transform ? '' : 'rotate(-45deg) translate(6px, -6px)'; + }); + + // Smooth scroll for anchor links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + const target = document.querySelector(this.getAttribute('href')); + if (target) { + target.scrollIntoView({ + behavior: 'smooth', + block: 'start' + }); + // Close mobile menu if open + navLinks.classList.remove('active'); + } + }); + }); + + // Intersection Observer for fade-in animations + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.style.opacity = '1'; + entry.target.style.transform = 'translateY(0)'; + } + }); + }, { threshold: 0.1 }); + + // Observe all post cards + document.querySelectorAll('.post-card').forEach(card => { + card.style.opacity = '0'; + card.style.transform = 'translateY(20px)'; + card.style.transition = 'opacity 0.5s ease, transform 0.5s ease'; + observer.observe(card); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..970c4cc --- /dev/null +++ b/style.css @@ -0,0 +1,210 @@ +:root { + --primary: #2d3436; + --secondary: #0984e3; + --accent: #00cec9; + --background: #ffffff; + --text: #2d3436; + --spacing: 2rem; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; + line-height: 1.6; + color: var(--text); + background: var(--background); +} + +.navbar { + position: fixed; + top: 0; + width: 100%; + padding: 1rem var(--spacing); + background: rgba(255, 255, 255, 0.95); + backdrop-filter: blur(10px); + display: flex; + justify-content: space-between; + align-items: center; + z-index: 1000; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); +} + +.logo { + font-size: 1.5rem; + font-weight: bold; + background: linear-gradient(45deg, var(--secondary), var(--accent)); + -webkit-background-clip: text; + background-clip: text; + color: transparent; +} + +.nav-links { + display: flex; + gap: 2rem; + list-style: none; +} + +.nav-links a { + text-decoration: none; + color: var(--text); + position: relative; + padding: 0.5rem 0; +} + +.nav-links a::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + width: 0; + height: 2px; + background: var(--secondary); + transition: width 0.3s ease; +} + +.nav-links a:hover::after { + width: 100%; +} + +.menu-toggle { + display: none; +} + +.hero { + height: 80vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; + padding: var(--spacing); + background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 206, 201, 0.1)); +} + +.hero h1 { + font-size: 3.5rem; + margin-bottom: 1rem; + background: linear-gradient(45deg, var(--secondary), var(--accent)); + -webkit-background-clip: text; + background-clip: text; + color: transparent; +} + +.blog-grid { + padding: var(--spacing); + max-width: 1200px; + margin: 0 auto; +} + +.blog-grid h2 { + margin-bottom: 2rem; + text-align: center; +} + +.posts { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; +} + +.post-card { + background: white; + border-radius: 1rem; + overflow: hidden; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease; +} + +.post-card:hover { + transform: translateY(-5px); +} + +.post-image { + height: 200px; + background: linear-gradient(45deg, var(--secondary), var(--accent)); +} + +.post-content { + padding: 1.5rem; +} + +.post-content time { + color: #666; + font-size: 0.9rem; +} + +footer { + background: var(--primary); + color: white; + padding: var(--spacing); + margin-top: 4rem; +} + +.footer-content { + max-width: 1200px; + margin: 0 auto; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 2rem; +} + +.footer-section ul { + list-style: none; + margin-top: 1rem; +} + +.footer-section a { + color: white; + text-decoration: none; + opacity: 0.8; + transition: opacity 0.3s ease; +} + +.footer-section a:hover { + opacity: 1; +} + +@media (max-width: 768px) { + .menu-toggle { + display: block; + background: none; + border: none; + cursor: pointer; + padding: 0.5rem; + } + + .menu-toggle span { + display: block; + width: 25px; + height: 3px; + background: var(--text); + margin: 5px 0; + transition: 0.3s; + } + + .nav-links { + position: fixed; + top: 60px; + right: -100%; + width: 100%; + height: calc(100vh - 60px); + background: white; + flex-direction: column; + align-items: center; + padding: 2rem; + transition: 0.3s; + } + + .nav-links.active { + right: 0; + } + + .hero h1 { + font-size: 2.5rem; + } +} \ No newline at end of file