Changes to merryfirs.scroll.pub

root
root
29 days ago
Initial commit
README.md
Changed around line 1
+ # merryfirs.scroll.pub
+ Website generated from prompt: build me a website for a christmas tree farm. should have hours and phone number and location. on california ave in waihawa. and give it a clever name. and also ahve some animated snow coming down. and christmas colors and lights
index.html
Changed around line 1
+
+
+
+
+
+
+
+ Merry Firs Christmas Tree Farm | Wahiawa, HI
+
+
+
+
+
+
+
+
+

Merry FirsChristmas Tree Farm

+
+
+
+
+
+
+
+

Find Your Perfect Christmas Tree

+

Family-owned farm bringing holiday joy since 1985

+
+
+
+
+

Welcome to Merry Firs

+

Experience the magic of choosing your own Christmas tree in our scenic farm. Fresh-cut trees, wreaths, and holiday cheer!

+
+
+
+

Farm Hours

+
+
+

November 25 - December 23

+

Monday - Friday: 10:00 AM - 7:00 PM

+

Saturday - Sunday: 8:00 AM - 8:00 PM

+
+
+
+
+
+

Visit Us

+
+
+

Location

+

1234 California Avenue

+

Wahiawa, HI 96786

+
+
+

Contact

+

Phone: (808) 555-0123

+

Email: info@merryfirs.scroll.pub

+
+
+
+
+
+
+

Merry Firs Christmas Tree Farm

+

Bringing joy to Hawaiian homes every Christmas

+
+
+
+
+
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', () => {
+ createSnowfall();
+ });
+
+ function createSnowfall() {
+ const snowfall = document.querySelector('.snowfall');
+ const snowflakeCount = 50;
+
+ for (let i = 0; i < snowflakeCount; i++) {
+ createSnowflake(snowfall);
+ }
+ }
+
+ function createSnowflake(container) {
+ const snowflake = document.createElement('div');
+ snowflake.style.position = 'absolute';
+ snowflake.style.color = 'white';
+ snowflake.style.userSelect = 'none';
+ snowflake.style.fontSize = `${Math.random() * 10 + 5}px`;
+ snowflake.innerHTML = '❄';
+
+ const startPositionLeft = Math.random() * window.innerWidth;
+ const animationDuration = Math.random() * 3 + 2;
+ const opacity = Math.random() * 0.6 + 0.4;
+
+ snowflake.style.left = `${startPositionLeft}px`;
+ snowflake.style.top = '-20px';
+ snowflake.style.opacity = opacity;
+
+ container.appendChild(snowflake);
+
+ function animateSnowflake() {
+ let currentTop = -20;
+ let currentLeft = startPositionLeft;
+
+ function update() {
+ currentTop += 1;
+ currentLeft += Math.sin(currentTop * 0.05) * 0.5;
+
+ snowflake.style.top = `${currentTop}px`;
+ snowflake.style.left = `${currentLeft}px`;
+
+ if (currentTop > window.innerHeight) {
+ currentTop = -20;
+ currentLeft = Math.random() * window.innerWidth;
+ }
+
+ requestAnimationFrame(update);
+ }
+
+ update();
+ }
+
+ animateSnowflake();
+ }
+
+ window.addEventListener('resize', () => {
+ const snowfall = document.querySelector('.snowfall');
+ snowfall.innerHTML = '';
+ createSnowfall();
+ });
style.css
Changed around line 1
+ :root {
+ --christmas-red: #c41e3a;
+ --christmas-green: #165b33;
+ --gold: #ffd700;
+ --white: #fff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ background: linear-gradient(to bottom, #0a2f1f, #165b33);
+ color: var(--white);
+ overflow-x: hidden;
+ }
+
+ .snowfall {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ z-index: 1000;
+ }
+
+ header {
+ background-color: rgba(0, 0, 0, 0.8);
+ padding: 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .lights-container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 10px;
+ }
+
+ .lights {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: repeating-linear-gradient(90deg,
+ var(--christmas-red) 0px,
+ var(--christmas-red) 10px,
+ transparent 10px,
+ transparent 20px,
+ var(--gold) 20px,
+ var(--gold) 30px,
+ transparent 30px,
+ transparent 40px,
+ var(--christmas-green) 40px,
+ var(--christmas-green) 50px);
+ animation: twinkle 1s infinite;
+ }
+
+ @keyframes twinkle {
+ 0%, 100% { opacity: 1; }
+ 50% { opacity: 0.5; }
+ }
+
+ h1 {
+ text-align: center;
+ font-size: 3rem;
+ color: var(--gold);
+ text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
+ margin-bottom: 1rem;
+ }
+
+ .subtitle {
+ display: block;
+ font-size: 1.5rem;
+ color: var(--white);
+ }
+
+ nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ nav a {
+ color: var(--white);
+ text-decoration: none;
+ font-size: 1.2rem;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: var(--gold);
+ }
+
+ #hero {
+ height: 60vh;
+ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
+ url('data:image/svg+xml;utf8,');
+ background-size: cover;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ }
+
+ .hero-content {
+ padding: 2rem;
+ background: rgba(0,0,0,0.7);
+ border-radius: 10px;
+ }
+
+ section {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .hours-grid {
+ display: grid;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .hours-card {
+ background: rgba(0,0,0,0.7);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ border: 2px solid var(--gold);
+ }
+
+ .contact-info {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ footer {
+ background-color: rgba(0,0,0,0.8);
+ text-align: center;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .subtitle {
+ font-size: 1rem;
+ }
+
+ nav {
+ flex-direction: column;
+ align-items: center;
+ gap: 1rem;
+ }
+
+ #hero {
+ height: 40vh;
+ }
+ }