From 97542e2d0940e36fca1b69692a6a9a59f74f5493 Mon Sep 17 00:00:00 2001 From: Knight Date: Sat, 28 Dec 2024 20:42:12 -0500 Subject: [PATCH] Refactor CSS in generateSite.js to improve description overlay styling. Changed mix-blend-mode from 'hard-light' to 'color-dodge' for enhanced visual effects and removed unnecessary margin-left property to streamline layout. These adjustments contribute to a more polished user experience. --- generateSite.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/generateSite.js b/generateSite.js index ba976cc..0847a3d 100644 --- a/generateSite.js +++ b/generateSite.js @@ -82,12 +82,11 @@ async function generateSite() { } .description { position: absolute; - margin-left: -40%; /* This will offset it to the left */ max-width: 80%; z-index: 2; color: #cccccc; opacity: 0.8; - mix-blend-mode: hard-light; + mix-blend-mode: color-dodge; margin-top: 0; margin-bottom: 0; font-size: 16px;