ceramic page test

This commit is contained in:
2025-10-28 17:11:19 -04:00
parent 4608e3c580
commit d9247f6f84
5 changed files with 70 additions and 49 deletions
+58
View File
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Luxury Detailing Maine provides mobile professional car cleaning services in the Portland Area"
/>
<title>Luxury Detailing Maine</title>
<link href="css/style.css" rel="stylesheet" />
<link href="css/dropdown.css" rel="stylesheet" />
<link href="css/hamburger.css" rel="stylesheet" />
<style>
</style>
</head>
<body>
<a href="#main-content" class="skipLink">Skip to main content</a>
<header>
<div class="banner" role="banner">
<a href="index.html" class="logo" aria-label="Company Logo">LD</a>
<button
id="hamburger"
aria-label="Toggle mobile navigation menu"
aria-expanded="false"
>
<span></span>
<span></span>
<span></span>
</button>
<nav>
<a class="navLink" role="navigation" href="services.html">Services</a>
<a class="navLink" role="navigation" href="ceramic-coating.html">Ceramic Coating</a>
<a class="navLink" role="navigation" href="reviews.html">Reviews</a>
<a class="navLink" role="navigation" href="contact.html">About</a>
</nav>
</div>
</header>
<main id="main-content">
<section>
<h1 style="margin-bottom: 7rem">Ceramic Coating</h1>
<div id="reviewContainer"></div>
</section>
<div style="display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; gap: 10%;">
<section style="background-color: red; width: 100%; flex-grow: 3"></section>
<section style="background-color: red; width: 20%;"></section>
<section style="background-color: blue; width: 50%;"></section>
</div>
</main>
</body>
</html>
+2 -2
View File
@@ -38,8 +38,8 @@
.dropdown-content { .dropdown-content {
overflow: hidden; overflow: hidden;
max-height: 0; max-height: 0;
border-left: solid 1px var(--dark-gold); border-left: solid 1px var(--gold);
border-right: solid 1px var(--dark-gold); border-right: solid 1px var(--gold);
transition: max-height 0.3s ease; transition: max-height 0.3s ease;
} }
+4 -42
View File
@@ -120,7 +120,7 @@
<nav> <nav>
<a class="navLink" role="navigation" href="services.html">Services</a> <a class="navLink" role="navigation" href="services.html">Services</a>
<a class="navLink" role="navigation" href="ceramic_coating.html">Ceramic Coating</a> <a class="navLink" role="navigation" href="ceramic-coating.html">Ceramic Coating</a>
<a class="navLink" role="navigation" href="reviews.html">Reviews</a> <a class="navLink" role="navigation" href="reviews.html">Reviews</a>
<a class="navLink" role="navigation" href="contact.html">About</a> <a class="navLink" role="navigation" href="contact.html">About</a>
</nav> </nav>
@@ -146,53 +146,15 @@
<section id="FAQ"> <section id="FAQ">
<h1 style="margin-bottom: 2rem">FAQ</h1> <h1 style="margin-bottom: 2rem">FAQ</h1>
<div class="dropdown"> <div class="faq-item">
<div class="dropdown-header" onclick="toggleDropdown(this)"> <div class="faq-question">
<h2>Question 1</h2> <h2>Question 1</h2>
<span class="dropdown-arrow"></span>
</div> </div>
<div class="dropdown-content"> <div class="faq-answer">
<div class="dropdown-body">
this is where we answer the question in the header this is where we answer the question in the header
</div> </div>
</div> </div>
</div>
<div class="dropdown">
<div class="dropdown-header" onclick="toggleDropdown(this)">
<h2>Question 2</h2>
<span class="dropdown-arrow"></span>
</div>
<div class="dropdown-content">
<div class="dropdown-body">
this is where we answer the question in the header
</div>
</div>
</div>
<div class="dropdown">
<div class="dropdown-header" onclick="toggleDropdown(this)">
<h2>Question 3</h2>
<span class="dropdown-arrow"></span>
</div>
<div class="dropdown-content">
<div class="dropdown-body">
this is where we answer the question in the header
</div>
</div>
</div>
<div class="dropdown">
<div class="dropdown-header" onclick="toggleDropdown(this)">
<h2>Question 4</h2>
<span class="dropdown-arrow"></span>
</div>
<div class="dropdown-content">
<div class="dropdown-body">
this is where we answer the question in the header
</div>
</div>
</div>
</section> </section>
</main> </main>
+2 -2
View File
@@ -45,7 +45,7 @@
.review-card-body { .review-card-body {
max-height: 15rem; max-height: 15rem;
overflow-y: scroll; overflow-y: auto;
text-align: left; text-align: left;
} }
@@ -182,7 +182,7 @@
<nav> <nav>
<a class="navLink" role="navigation" href="services.html">Services</a> <a class="navLink" role="navigation" href="services.html">Services</a>
<a class="navLink" role="navigation" href="ceramic_coating.html">Ceramic Coating</a> <a class="navLink" role="navigation" href="ceramic-coating.html">Ceramic Coating</a>
<a class="navLink" role="navigation" href="reviews.html">Reviews</a> <a class="navLink" role="navigation" href="reviews.html">Reviews</a>
<a class="navLink" role="navigation" href="contact.html">About</a> <a class="navLink" role="navigation" href="contact.html">About</a>
</nav> </nav>
+2 -1
View File
@@ -93,6 +93,7 @@
.dropdown-content { .dropdown-content {
text-align: left; text-align: left;
border: none;
} }
.dropdown-content.open { .dropdown-content.open {
max-height: 700px; max-height: 700px;
@@ -143,7 +144,7 @@
<nav> <nav>
<a class="navLink" role="navigation" href="services.html">Services</a> <a class="navLink" role="navigation" href="services.html">Services</a>
<a class="navLink" role="navigation" href="ceramic_coating.html">Ceramic Coating</a> <a class="navLink" role="navigation" href="ceramic-coating.html">Ceramic Coating</a>
<a class="navLink" role="navigation" href="reviews.html">Reviews</a> <a class="navLink" role="navigation" href="reviews.html">Reviews</a>
<a class="navLink" role="navigation" href="contact.html">About</a> <a class="navLink" role="navigation" href="contact.html">About</a>
</nav> </nav>