|
|
@@ -1399,22 +1399,48 @@ nav.wp-block-query-pagination {
|
|
|
font-size: 1rem;
|
|
|
}
|
|
|
/* "Daveo Radio" CTA โ playback now lives on /radio, so the Music page links there. */
|
|
|
+/* Action buttons โ WordPress-style outline in the site's dark blue (slate-deep),
|
|
|
+ a tighter radius than WP's default, and a subtle raised drop-shadow that presses
|
|
|
+ down on hover (translateY + shadow collapse). Shared by the music Daveo Radio
|
|
|
+ button and the desk Scroll / Archive / Load-More buttons (was a solid dark fill).
|
|
|
+ The search submit (inside .input-group) opts out below so it stays joined to the
|
|
|
+ field. */
|
|
|
+.daveo-radio-btn,
|
|
|
+.btn-dark {
|
|
|
+ background: transparent;
|
|
|
+ background-color: transparent;
|
|
|
+ color: #484c57;
|
|
|
+ border: 2px solid #484c57;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
|
|
|
+ transition: transform .1s ease, box-shadow .1s ease, color .15s ease, border-color .15s ease;
|
|
|
+}
|
|
|
+.daveo-radio-btn:hover,
|
|
|
+.daveo-radio-btn:active,
|
|
|
+.btn-dark:hover,
|
|
|
+.btn-dark:active {
|
|
|
+ color: #25c2a0; /* footer link-hover green */
|
|
|
+ background-color: transparent;
|
|
|
+ border-color: #25c2a0;
|
|
|
+ transform: translateY(2px);
|
|
|
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
|
|
|
+}
|
|
|
.daveo-radio-btn {
|
|
|
display: inline-block;
|
|
|
- background: #484c57;
|
|
|
- color: #fff;
|
|
|
padding: 0.7rem 1.5rem;
|
|
|
- border-radius: 6px;
|
|
|
font-size: 1.05rem;
|
|
|
line-height: 1.2;
|
|
|
text-decoration: none;
|
|
|
white-space: nowrap;
|
|
|
- transition: background 0.2s ease;
|
|
|
}
|
|
|
-.daveo-radio-btn:hover,
|
|
|
-.daveo-radio-btn:focus {
|
|
|
- background: #25c2a0;
|
|
|
- color: #fff;
|
|
|
+/* Search submit stays joined to the input โ keep it flat (no lift/shadow). */
|
|
|
+.input-group .btn-dark {
|
|
|
+ box-shadow: none;
|
|
|
+}
|
|
|
+.input-group .btn-dark:hover,
|
|
|
+.input-group .btn-dark:active {
|
|
|
+ transform: none;
|
|
|
+ box-shadow: none;
|
|
|
}
|
|
|
.daveo-radio-btn .dw-icon {
|
|
|
width: 1em;
|