This commit is contained in:
Oliver
2025-07-26 06:51:09 -03:00
parent 0af852ebbd
commit eb7da59c64
2 changed files with 35 additions and 4 deletions

View File

@@ -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);
}