Changes to prose1.scroll.pub

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

Welcome to Prose

+

Thoughts and ideas that matter

+
+
+
+

Latest Articles

+
+
+
+
+

The Art of Mindful Living

+

Exploring the principles of mindfulness in our daily lives...

+
+
+
+
+
+
+

Future of Technology

+

Examining emerging trends shaping our digital world...

+
+
+
+
+
+
+

Sustainable Living

+

Simple steps toward an eco-friendly lifestyle...

+
+
+
+
+
+
+
+
+
+
+

Navigation

+
    +
    +
    +
    +

    Connect

    +
      +
      +
      +
      +
      index.scroll
      Changed around line 1
      + buildHtml
      + baseUrl https://prose.scroll.pub
      + metaTags
      + editButton /edit.html
      + title Prose | Modern Thoughts
      + style.css
      + body.html
      + script.js
      readme.scroll
      Changed around line 1
      + # prose1.scroll.pub
      + Website generated by Claude from prompt: a blog
      script.js
      Changed around line 1
      + 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.forEach(span => span.classList.toggle('active'));
      + });
      +
      + // Smooth scroll for navigation links
      + document.querySelectorAll('a[href^="#"]').forEach(anchor => {
      + anchor.addEventListener('click', function (e) {
      + e.preventDefault();
      + document.querySelector(this.getAttribute('href')).scrollIntoView({
      + behavior: 'smooth'
      + });
      + });
      + });
      +
      + // Add intersection observer for fade-in animations
      + const observer = new IntersectionObserver(
      + (entries) => {
      + entries.forEach(entry => {
      + if (entry.isIntersecting) {
      + entry.target.classList.add('visible');
      + }
      + });
      + },
      + { threshold: 0.1 }
      + );
      +
      + document.querySelectorAll('.post-card').forEach(card => {
      + observer.observe(card);
      + });
      + });
      style.css
      Changed around line 1
      + :root {
      + --primary-color: #2d3436;
      + --accent-color: #6c5ce7;
      + --text-color: #2d3436;
      + --background-color: #ffffff;
      + --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      + --transition: all 0.3s ease;
      + }
      +
      + * {
      + 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-color);
      + background-color: var(--background-color);
      + }
      +
      + /* Header & Navigation */
      + .main-nav {
      + display: flex;
      + justify-content: space-between;
      + align-items: center;
      + padding: 1rem 5%;
      + background: rgba(255, 255, 255, 0.95);
      + backdrop-filter: blur(10px);
      + position: sticky;
      + top: 0;
      + z-index: 1000;
      + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      + }
      +
      + .logo {
      + font-size: 1.8rem;
      + font-weight: 700;
      + color: var(--primary-color);
      + }
      +
      + .nav-links {
      + display: flex;
      + gap: 2rem;
      + list-style: none;
      + }
      +
      + .nav-links a {
      + text-decoration: none;
      + color: var(--text-color);
      + font-weight: 500;
      + transition: var(--transition);
      + }
      +
      + .nav-links a:hover {
      + color: var(--accent-color);
      + }
      +
      + .menu-toggle {
      + display: none;
      + }
      +
      + /* Hero Section */
      + .hero {
      + height: 60vh;
      + display: flex;
      + flex-direction: column;
      + justify-content: center;
      + align-items: center;
      + text-align: center;
      + background: linear-gradient(135deg, #a8e6cf 0%, #6c5ce7 100%);
      + color: white;
      + padding: 2rem;
      + }
      +
      + .hero h1 {
      + font-size: 3.5rem;
      + margin-bottom: 1rem;
      + animation: fadeInUp 1s ease;
      + }
      +
      + .hero p {
      + font-size: 1.5rem;
      + opacity: 0.9;
      + animation: fadeInUp 1s ease 0.2s;
      + }
      +
      + /* Posts Grid */
      + .featured-posts {
      + padding: 4rem 5%;
      + }
      +
      + .featured-posts h2 {
      + text-align: center;
      + margin-bottom: 3rem;
      + font-size: 2rem;
      + }
      +
      + .post-grid {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      + gap: 2rem;
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .post-card {
      + background: white;
      + border-radius: 15px;
      + overflow: hidden;
      + box-shadow: var(--card-shadow);
      + transition: var(--transition);
      + }
      +
      + .post-card:hover {
      + transform: translateY(-5px);
      + box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
      + }
      +
      + .post-image {
      + height: 200px;
      + background: linear-gradient(45deg, #a8e6cf, #6c5ce7);
      + }
      +
      + .post-content {
      + padding: 1.5rem;
      + }
      +
      + .post-content h3 {
      + margin-bottom: 0.5rem;
      + color: var(--primary-color);
      + }
      +
      + .post-content time {
      + color: #666;
      + font-size: 0.9rem;
      + }
      +
      + /* Footer */
      + footer {
      + background: var(--primary-color);
      + color: white;
      + padding: 3rem 5%;
      + }
      +
      + .footer-content {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      + gap: 2rem;
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .footer-section h4 {
      + margin-bottom: 1rem;
      + }
      +
      + .footer-section ul {
      + list-style: none;
      + }
      +
      + .footer-section a {
      + color: white;
      + text-decoration: none;
      + opacity: 0.8;
      + transition: var(--transition);
      + }
      +
      + .footer-section a:hover {
      + opacity: 1;
      + }
      +
      + /* Animations */
      + @keyframes fadeInUp {
      + from {
      + opacity: 0;
      + transform: translateY(20px);
      + }
      + to {
      + opacity: 1;
      + transform: translateY(0);
      + }
      + }
      +
      + /* Mobile Responsiveness */
      + @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(--primary-color);
      + margin: 5px 0;
      + transition: var(--transition);
      + }
      +
      + .nav-links {
      + display: none;
      + position: absolute;
      + top: 100%;
      + left: 0;
      + right: 0;
      + background: white;
      + flex-direction: column;
      + padding: 1rem;
      + text-align: center;
      + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      + }
      +
      + .nav-links.active {
      + display: flex;
      + }
      +
      + .hero h1 {
      + font-size: 2.5rem;
      + }
      +
      + .hero p {
      + font-size: 1.2rem;
      + }
      + }