button
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user