From 6ccebd10865b66c4b5e895cf62daa3a6dc367600 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 3 Nov 2025 20:04:11 -0500 Subject: [PATCH] changed up service styling + added content to ceramic page --- ceramic-coating.html | 59 +++++++++++++++++++++++++++++++++++--------- css/style.css | 9 ++++--- services.html | 33 ++++++++++++++++--------- 3 files changed, 75 insertions(+), 26 deletions(-) diff --git a/ceramic-coating.html b/ceramic-coating.html index 5ed00b7..33e8297 100644 --- a/ceramic-coating.html +++ b/ceramic-coating.html @@ -12,11 +12,48 @@ @@ -48,22 +85,22 @@
-
-

Ceramic Coating

-
-
-
+
+

All Ceramic Coatings Include

+
+

testing

-
-
+
+
+
-
+
-
+ diff --git a/css/style.css b/css/style.css index d2defe2..d57e127 100644 --- a/css/style.css +++ b/css/style.css @@ -44,7 +44,7 @@ header { .navLink { color: var(--gold); text-decoration: none; - font-weight: 500; + font-weight: bold; transition: color 0.5s ease; } @@ -181,16 +181,17 @@ footer { display: flex; flex-direction: column; position: fixed; - gap: 1rem; + gap: 2rem; padding: 2rem 0; - top: -12rem; + top: -20rem; left: 0; width: 100%; - font-size: 1rem; + font-size: 2rem; text-align: center; + background-color: var(--black); transition: top 0.5s ease; box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); diff --git a/services.html b/services.html index 0ea68ca..bbd72e0 100644 --- a/services.html +++ b/services.html @@ -53,16 +53,17 @@ .dropdown { width: 100%; border: 1px solid var(--gold); - transition: 2s; - } - .dropdown:hover { - border: 1px solid white; + border-radius: 1.25rem; + transition: 0.5s; + user-select: none; } /** Prevent nested dropdowns from having borders */ .dropdown .dropdown { border-left: none; border-right: none; + border-bottom: none; + border-radius: 0rem; } .dropdown-header { @@ -105,12 +106,6 @@ max-height: 2000px; } - /** - TODO: - - desktop view should be FLEX ROW - - mobile view should be normal columns - - get rid of double border on dropdowns if nested - */ .dropdown-body { display: flex; flex-direction: row; @@ -118,12 +113,12 @@ align-items: flex-start; flex-wrap: wrap; margin: 1rem 1rem 1.5rem 6rem; + user-select: text; } .dropdown-body p { padding-right: 4rem; } - .dropdown-body-half { flex-basis: 50%; } @@ -137,6 +132,9 @@ width: 100%; } + h1 { + font-size: 1.75rem; + } h2 { font-size: 1.5rem; } @@ -146,7 +144,20 @@ } .dropdown-body { margin: 1rem 1rem 1.5rem 3rem; + flex-direction: column; } + .dropdown-body span:not(:first-child) { + margin-top: 1.5rem; + } + .dropdown-body p { + padding-right: 0rem; + } + .book-link { + padding: 0; + margin: 0; + align-self: center; + } + }