Files
luxury-detailing-maine/ceramic-coating.html
T

213 lines
5.3 KiB
HTML

<!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>
hr {
border: 2px solid var(--gold);
width: 75%;
margin: 1rem;
}
.info-flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 5rem;
width: 90%;
margin-top: 4rem;
}
.info-box {
background:
linear-gradient(var(--black) 0 0) padding-box, /*black background*/
linear-gradient(to left, var(--gold), white, var(--gold)) border-box;
border: 5px solid transparent;
display: flex;
justify-content: center;
flex-grow: 1;
min-width: auto;
width: auto;
padding: 2rem 4rem;
border-radius: 4rem;
min-height: 20rem;
/** border: 2px solid var(--gold); **/
transition: 1s ease;
}
.info-box:hover {
}
.info-box h1 {
color: var(--gold);
}
.info-box h2 {
color: white;
/** TODO: figure out how to style these guys better */
}
#packages {
flex-shrink: 1;
}
#wheel-wash {
}
.checkMarkList {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
max-width: 100%;
}
.checkMarkList li {
text-wrap: nowrap;
list-style-position: inside;
padding: 0rem;
margin: .5rem .5rem;
}
.checkMarkList li::marker {
content: "✓ ";
}
ol li ul {
padding-left: 1rem;
}
li {
color: white;
text-align: left;
}
li::marker {
color: var(--gold);
}
/** MOBILE */
@media screen and (max-width: 1100px) {
#packages {
max-width: 100%;
}
#wheel-wash {
max-width: 100%;
}
.info-flex {
flex-direction: column;
align-items: center;
min-width: 90%;
}
.info-flex section {
width: 100%;
}
}
</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">LUXURY DETAILING</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="ceramic-coating.html">Ceramic Coating</a>
<a class="navLink" role="navigation" href="services.html">Services</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">
<div class="info-flex">
<section class="info-box" style="min-width: 100%; margin-bottom: 2rem;">
<h1><em>All</em> Ceramic Coatings Include</h1>
<hr />
<p>some headline details can go in here, then:</p>
<ul class="checkMarkList">
<li>3-5 years of protection</li>
<li>Hand wash</li>
<li>other detail</li>
<li>other detail</li>
</ul>
</section>
<section id="packages" class="info-box">
<h1>Choose Your Coating <em>Package</em></h1>
<hr />
<div style="width: 100%; display:flex; justify-content: space-around;">
<div>
<h2>Elite</h2>
<ul>
<li>elite detail one</li>
<li>elite detail two</li>
</ul>
</div>
<div>
<h2>Complete</h2>
<ul>
<li>complete detail one</li>
<li>complete detail two</li>
</ul>
</div>
</div>
</section>
<section id="wheel-wash" class="info-box">
<h1>Wheel Wash<br /><em>Add-on</em></h1>
<hr />
<ul>
<li>wheel wash information 1</li>
<li>wheel wash information 2</li>
<li>wheel wash information 3</li>
</ul>
</section>
</div>
</main>
<footer>
<div id="footer-left">
&copy;Luxury Detailing Maine 2025<br />
All rights reserved<br />
Portland, ME
</div>
<div id="footer-right">
207-807-6770<br />
example@email.com<br />
<a
href="https://www.instagram.com/luxurydetailingmaine/"
target="_blank"
>@luxurydetailingmaine</a
>
</div>
</footer>
<script src="js/hamburger.js"></script>
</body>
</html>