Changes to fixitfast.scroll.pub

root
root
28 days ago
Initial commit
README.md
Changed around line 1
+ # fixitfast.scroll.pub
+ Website generated from prompt: really quick and easy steps to fix things in my home. interactive handyman
index.html
Changed around line 1
+
+
+
+
+
+
+
+ FixItFast - Interactive Home Repair Guide
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Fix It Right, Fix It Fast

+
+
+
+
+
+
+
+

Common Repairs

+
+
+
🚰
+

Leaky Faucet

+
+
+
  • Turn off water supply
  • +
  • Remove handle
  • +
  • Replace washer
  • +
  • Reassemble
  • +
    +
    +
    +
    +
    💡
    +

    Light Switch

    +
    +
    +
  • Turn off power
  • +
  • Remove cover plate
  • +
  • Test wires
  • +
  • Replace switch
  • +
    +
    +
    +
    +
    🪑
    +

    Squeaky Door

    +
    +
    +
  • Clean hinges
  • +
  • Apply lubricant
  • +
  • Test movement
  • +
  • Wipe excess
  • +
    +
    +
    +
    +
    +
    +
    +

    Essential Tools

    +
    +
    + 🔧
    + Wrench Set
    +
    +
    + 🔨
    + Hammer
    +
    +
    + 🪛
    + Screwdrivers
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Quick Links

    +
      +
      +
      +
      +

      Contact

      +

      info@fixitfast.scroll.pub

      +
      +
      +
      +
      +
      +
      script.js
      Changed around line 1
      + document.addEventListener('DOMContentLoaded', function() {
      + // Mobile menu toggle
      + const menuToggle = document.querySelector('.menu-toggle');
      + const navLinks = document.querySelector('.nav-links');
      +
      + menuToggle.addEventListener('click', () => {
      + navLinks.classList.toggle('active');
      + menuToggle.classList.toggle('active');
      + });
      +
      + // Repair card interaction
      + const repairCards = document.querySelectorAll('.repair-card');
      +
      + repairCards.forEach(card => {
      + card.addEventListener('click', () => {
      + const steps = card.querySelector('.steps');
      + steps.classList.toggle('hidden');
      +
      + // Smooth height animation
      + if (!steps.classList.contains('hidden')) {
      + steps.style.maxHeight = steps.scrollHeight + "px";
      + } else {
      + steps.style.maxHeight = 0;
      + }
      + });
      + });
      +
      + // Search functionality
      + const searchInput = document.getElementById('search');
      + const searchBtn = document.querySelector('.search-btn');
      +
      + searchBtn.addEventListener('click', () => {
      + const searchTerm = searchInput.value.toLowerCase();
      + const cards = document.querySelectorAll('.repair-card');
      +
      + cards.forEach(card => {
      + const title = card.querySelector('h3').textContent.toLowerCase();
      + if (title.includes(searchTerm)) {
      + card.style.display = 'block';
      + card.style.animation = 'fadeIn 0.5s ease-out';
      + } else {
      + card.style.display = 'none';
      + }
      + });
      + });
      +
      + // Smooth scroll for navigation links
      + document.querySelectorAll('a[href^="#"]').forEach(anchor => {
      + anchor.addEventListener('click', function(e) {
      + e.preventDefault();
      + const target = document.querySelector(this.getAttribute('href'));
      +
      + if (target) {
      + window.scrollTo({
      + top: target.offsetTop - 80,
      + behavior: 'smooth'
      + });
      + }
      + });
      + });
      +
      + // Add hover effect for tools
      + const toolItems = document.querySelectorAll('.tool-item');
      +
      + toolItems.forEach(tool => {
      + tool.addEventListener('mouseenter', () => {
      + tool.style.transform = 'translateY(-5px) scale(1.05)';
      + });
      +
      + tool.addEventListener('mouseleave', () => {
      + tool.style.transform = 'translateY(0) scale(1)';
      + });
      + });
      + });
      style.css
      Changed around line 1
      + :root {
      + --primary-color: #2c3e50;
      + --secondary-color: #3498db;
      + --accent-color: #e74c3c;
      + --background-color: #f9f9f9;
      + --text-color: #333;
      + --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: 'Segoe UI', system-ui, sans-serif;
      + line-height: 1.6;
      + color: var(--text-color);
      + background-color: var(--background-color);
      + }
      +
      + /* Header & Navigation */
      + header {
      + background: var(--primary-color);
      + padding: 1rem;
      + position: fixed;
      + width: 100%;
      + top: 0;
      + z-index: 1000;
      + box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      + }
      +
      + nav {
      + display: flex;
      + justify-content: space-between;
      + align-items: center;
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .logo {
      + color: white;
      + font-size: 1.5rem;
      + font-weight: bold;
      + text-transform: uppercase;
      + letter-spacing: 2px;
      + }
      +
      + .nav-links {
      + display: flex;
      + list-style: none;
      + }
      +
      + .nav-links a {
      + color: white;
      + text-decoration: none;
      + padding: 0.5rem 1rem;
      + transition: var(--transition);
      + }
      +
      + .nav-links a:hover {
      + color: var(--secondary-color);
      + }
      +
      + /* Hero Section */
      + .hero {
      + height: 80vh;
      + display: flex;
      + flex-direction: column;
      + justify-content: center;
      + align-items: center;
      + background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      + color: white;
      + text-align: center;
      + padding: 2rem;
      + margin-top: 60px;
      + }
      +
      + .hero h1 {
      + font-size: 3rem;
      + margin-bottom: 2rem;
      + animation: fadeIn 1s ease-out;
      + }
      +
      + .search-container {
      + width: 100%;
      + max-width: 600px;
      + display: flex;
      + gap: 1rem;
      + }
      +
      + #search {
      + flex: 1;
      + padding: 1rem;
      + border: none;
      + border-radius: 25px;
      + font-size: 1.1rem;
      + }
      +
      + .search-btn {
      + padding: 1rem 2rem;
      + background: var(--accent-color);
      + color: white;
      + border: none;
      + border-radius: 25px;
      + cursor: pointer;
      + transition: var(--transition);
      + }
      +
      + .search-btn:hover {
      + background: #c0392b;
      + transform: translateY(-2px);
      + }
      +
      + /* Repair Cards */
      + .repair-grid {
      + padding: 4rem 2rem;
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .repair-grid h2 {
      + text-align: center;
      + margin-bottom: 2rem;
      + color: var(--primary-color);
      + }
      +
      + .card-container {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      + gap: 2rem;
      + }
      +
      + .repair-card {
      + background: white;
      + border-radius: 10px;
      + padding: 2rem;
      + box-shadow: var(--card-shadow);
      + transition: var(--transition);
      + cursor: pointer;
      + }
      +
      + .repair-card:hover {
      + transform: translateY(-5px);
      + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      + }
      +
      + .card-icon {
      + font-size: 2.5rem;
      + margin-bottom: 1rem;
      + text-align: center;
      + }
      +
      + .repair-card h3 {
      + color: var(--primary-color);
      + margin-bottom: 1rem;
      + text-align: center;
      + }
      +
      + .steps {
      + padding-left: 1.5rem;
      + margin-top: 1rem;
      + }
      +
      + .steps.hidden {
      + display: none;
      + }
      +
      + /* Tools Section */
      + .tools-needed {
      + background: var(--primary-color);
      + color: white;
      + padding: 4rem 2rem;
      + }
      +
      + .tools-needed h2 {
      + text-align: center;
      + margin-bottom: 2rem;
      + }
      +
      + .tools-grid {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      + gap: 2rem;
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .tool-item {
      + display: flex;
      + flex-direction: column;
      + align-items: center;
      + text-align: center;
      + padding: 1rem;
      + background: rgba(255, 255, 255, 0.1);
      + border-radius: 10px;
      + transition: var(--transition);
      + }
      +
      + .tool-item:hover {
      + transform: translateY(-5px);
      + background: rgba(255, 255, 255, 0.2);
      + }
      +
      + .tool-icon {
      + font-size: 2rem;
      + margin-bottom: 0.5rem;
      + }
      +
      + /* Footer */
      + footer {
      + background: var(--primary-color);
      + color: white;
      + padding: 2rem;
      + }
      +
      + .footer-content {
      + max-width: 1200px;
      + margin: 0 auto;
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      + gap: 2rem;
      + }
      +
      + .footer-section h4 {
      + margin-bottom: 1rem;
      + }
      +
      + .footer-section ul {
      + list-style: none;
      + }
      +
      + .footer-section a {
      + color: white;
      + text-decoration: none;
      + transition: var(--transition);
      + }
      +
      + .footer-section a:hover {
      + color: var(--secondary-color);
      + }
      +
      + /* Animations */
      + @keyframes fadeIn {
      + from {
      + opacity: 0;
      + transform: translateY(20px);
      + }
      + to {
      + opacity: 1;
      + transform: translateY(0);
      + }
      + }
      +
      + /* Mobile Responsiveness */
      + .menu-toggle {
      + display: none;
      + flex-direction: column;
      + gap: 5px;
      + cursor: pointer;
      + }
      +
      + .menu-toggle span {
      + width: 25px;
      + height: 3px;
      + background: white;
      + transition: var(--transition);
      + }
      +
      + @media (max-width: 768px) {
      + .menu-toggle {
      + display: flex;
      + }
      +
      + .nav-links {
      + display: none;
      + position: absolute;
      + top: 100%;
      + left: 0;
      + right: 0;
      + background: var(--primary-color);
      + flex-direction: column;
      + padding: 1rem;
      + }
      +
      + .nav-links.active {
      + display: flex;
      + }
      +
      + .hero h1 {
      + font-size: 2rem;
      + }
      +
      + .search-container {
      + flex-direction: column;
      + }
      +
      + .search-btn {
      + width: 100%;
      + }
      + }