From eb7da59c64e409dbb66b002c82fd02de1bd40a7f Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 26 Jul 2025 06:51:09 -0300 Subject: [PATCH] button --- public/logo.svg | 2 +- public/style.css | 37 ++++++++++++++++++++++++++++++++++--- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/public/logo.svg b/public/logo.svg index 96b2de0..0900258 100644 --- a/public/logo.svg +++ b/public/logo.svg @@ -3,7 +3,7 @@ + style="enable-background:new 0 0 594 191;" xml:space="preserve"> diff --git a/public/style.css b/public/style.css index 4a5205a..f5ed3ef 100644 --- a/public/style.css +++ b/public/style.css @@ -315,8 +315,10 @@ footer a:hover { gap: 8px; } #cw-chatToggle img { - width: 120px; - height: 40px; + image-rendering: pixelated; + image-rendering: optimizeQuality; + image-rendering: -webkit-optimize-contrast; /* Chrome */ + image-rendering: crisp-edges; /* Fallback */ } #cw-chatToggle span.text-sm { font-weight: 500; @@ -353,8 +355,12 @@ footer a:hover { padding-bottom: 10px; } #cw-chatWidget .logo-container img { - height: 40px; + height: 60px; user-select: none; + image-rendering: optimizeQuality; + image-rendering: pixelated; + image-rendering: -webkit-optimize-contrast; /* Chrome */ + image-rendering: crisp-edges; /* Fallback */ } /* Header */ @@ -431,3 +437,28 @@ footer a:hover { margin-right: auto; text-align: left; } + +.button { + display: inline-block; + padding: 12px 24px; + background-color: #4CAF50; /* Green */ + color: white; + text-align: center; + text-decoration: none; + border-radius: 8px; + font-size: 16px; + font-weight: bold; + transition: background-color 0.3s ease, box-shadow 0.3s ease; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.button:hover { + background-color: #45a049; + box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); +} + +.button:active { + background-color: #3e8e41; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); +} +