2026 Deep DRFT Theme Draft 1 WIP
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* Navigation menu item styling */
|
||||
/* Navigation menu item styling */
|
||||
.nav-menu-item {
|
||||
display: block;
|
||||
padding: 8px 16px;
|
||||
@@ -29,26 +29,42 @@
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* Hover state */
|
||||
.nav-menu-item:hover {
|
||||
background-color: rgba(138, 43, 226, 0.08);
|
||||
color: #8A2BE2;
|
||||
text-decoration: none;
|
||||
}
|
||||
/* === HOVER STATES === */
|
||||
|
||||
.nav-menu-item:hover .nav-item-content {
|
||||
color: var(--mud-palette-tertiary);
|
||||
/* Base hover */
|
||||
.nav-menu-item:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav-menu-item:hover .nav-item-text {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Active state */
|
||||
/* Charleston (Light Mode) - Gold hover tint */
|
||||
:global(.deepdrft-theme-light) .nav-menu-item:hover {
|
||||
background-color: rgba(201, 169, 98, 0.1);
|
||||
color: #1C1C1C;
|
||||
}
|
||||
|
||||
:global(.deepdrft-theme-light) .nav-menu-item:hover .nav-item-content {
|
||||
color: #B8848C;
|
||||
}
|
||||
|
||||
/* Lowcountry (Dark Mode) - Coral glow hover */
|
||||
:global(.deepdrft-theme-dark) .nav-menu-item:hover {
|
||||
background-color: rgba(224, 122, 95, 0.12);
|
||||
color: #E07A5F;
|
||||
box-shadow: 0 0 10px rgba(224, 122, 95, 0.15);
|
||||
}
|
||||
|
||||
:global(.deepdrft-theme-dark) .nav-menu-item:hover .nav-item-content {
|
||||
color: #E07A5F;
|
||||
}
|
||||
|
||||
/* === ACTIVE STATES === */
|
||||
|
||||
/* Base active */
|
||||
.nav-menu-item.active {
|
||||
background-color: rgba(138, 43, 226, 0.12);
|
||||
color: var(--mud-palette-primary);
|
||||
border-left: 4px solid #8A2BE2;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
@@ -64,8 +80,39 @@
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Focus state */
|
||||
.nav-menu-item:focus {
|
||||
outline: 2px solid #8A2BE2;
|
||||
/* Charleston (Light Mode) - Iron left border */
|
||||
:global(.deepdrft-theme-light) .nav-menu-item.active {
|
||||
background-color: rgba(28, 28, 28, 0.08);
|
||||
color: #1C1C1C;
|
||||
border-left: 4px solid #1C1C1C;
|
||||
}
|
||||
|
||||
:global(.deepdrft-theme-light) .nav-menu-item.active .nav-item-content {
|
||||
color: #1C1C1C;
|
||||
}
|
||||
|
||||
/* Lowcountry (Dark Mode) - Gold active indicator */
|
||||
:global(.deepdrft-theme-dark) .nav-menu-item.active {
|
||||
background-color: rgba(233, 196, 106, 0.12);
|
||||
color: #E9C46A;
|
||||
border-left: 4px solid #E9C46A;
|
||||
box-shadow: 0 0 12px rgba(233, 196, 106, 0.2);
|
||||
}
|
||||
|
||||
:global(.deepdrft-theme-dark) .nav-menu-item.active .nav-item-content {
|
||||
color: #E9C46A;
|
||||
}
|
||||
|
||||
/* === FOCUS STATES === */
|
||||
|
||||
/* Charleston (Light Mode) - Iron focus outline */
|
||||
:global(.deepdrft-theme-light) .nav-menu-item:focus {
|
||||
outline: 2px solid #1C1C1C;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
/* Lowcountry (Dark Mode) - Coral focus outline */
|
||||
:global(.deepdrft-theme-dark) .nav-menu-item:focus {
|
||||
outline: 2px solid #E07A5F;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
@@ -24,15 +24,33 @@
|
||||
backdrop-filter: blur(15px);
|
||||
-webkit-backdrop-filter: blur(15px);
|
||||
border-radius: 1rem;
|
||||
border: 1px solid var(--deepdrft-theme-primary);
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
|
||||
0 2px 10px var(--deepdrft-theme-secondary);
|
||||
border: 2px solid var(--deepdrft-theme-primary);
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
||||
color: #ffffff;
|
||||
transition: all 0.3s ease;
|
||||
overflow: hidden;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/* Charleston (Light Mode) - Iron frame effect */
|
||||
:global(.deepdrft-theme-light) .player-backdrop {
|
||||
background: rgba(253, 251, 247, 0.92);
|
||||
border: 2px solid #1C1C1C;
|
||||
box-shadow: 0 4px 20px rgba(28, 28, 28, 0.2),
|
||||
inset 0 0 0 1px rgba(28, 28, 28, 0.05);
|
||||
color: #1C1C1C;
|
||||
}
|
||||
|
||||
/* Lowcountry (Dark Mode) - Warm sunset glow effect */
|
||||
:global(.deepdrft-theme-dark) .player-backdrop {
|
||||
background: rgba(20, 20, 32, 0.88);
|
||||
border: 1px solid rgba(224, 122, 95, 0.5);
|
||||
box-shadow: 0 0 20px rgba(224, 122, 95, 0.25),
|
||||
0 0 40px rgba(123, 109, 141, 0.15),
|
||||
0 4px 20px rgba(0, 0, 0, 0.4);
|
||||
color: #F5F0E6;
|
||||
}
|
||||
|
||||
/* Control buttons positioning */
|
||||
.player-controls {
|
||||
position: absolute;
|
||||
@@ -50,7 +68,7 @@
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
background: linear-gradient(135deg,
|
||||
background: linear-gradient(135deg,
|
||||
var(--deepdrft-theme-primary) 0%,
|
||||
var(--deepdrft-theme-secondary) 50%,
|
||||
var(--deepdrft-theme-tertiary) 100%
|
||||
@@ -58,15 +76,36 @@
|
||||
backdrop-filter: blur(15px);
|
||||
-webkit-backdrop-filter: blur(15px);
|
||||
border: 2px solid var(--deepdrft-theme-secondary);
|
||||
box-shadow: 0 4px 20px var(--deepdrft-theme-primary),
|
||||
0 2px 10px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* Charleston (Light Mode) - Iron dock */
|
||||
:global(.deepdrft-theme-light) .minimized-dock {
|
||||
background: linear-gradient(135deg, #1C1C1C 0%, #B8848C 50%, #C9A962 100%);
|
||||
border: 2px solid #1C1C1C;
|
||||
box-shadow: 0 4px 15px rgba(28, 28, 28, 0.4);
|
||||
}
|
||||
|
||||
/* Lowcountry (Dark Mode) - Warm sunset dock */
|
||||
:global(.deepdrft-theme-dark) .minimized-dock {
|
||||
background: linear-gradient(135deg, #E07A5F 0%, #7B6D8D 50%, #E9C46A 100%);
|
||||
border: 2px solid rgba(224, 122, 95, 0.6);
|
||||
box-shadow: 0 0 20px rgba(224, 122, 95, 0.4),
|
||||
0 0 40px rgba(123, 109, 141, 0.2);
|
||||
}
|
||||
|
||||
.minimized-dock:hover {
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 6px 25px rgba(var(--deepdrft-theme-primary), 0.8),
|
||||
0 3px 15px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
:global(.deepdrft-theme-light) .minimized-dock:hover {
|
||||
box-shadow: 0 6px 20px rgba(28, 28, 28, 0.5);
|
||||
}
|
||||
|
||||
:global(.deepdrft-theme-dark) .minimized-dock:hover {
|
||||
box-shadow: 0 0 30px rgba(224, 122, 95, 0.5),
|
||||
0 0 50px rgba(123, 109, 141, 0.3);
|
||||
}
|
||||
|
||||
/* Minimized button styles */
|
||||
|
||||
@@ -26,11 +26,22 @@
|
||||
min-width: 4px;
|
||||
height: var(--bar-height, 2%);
|
||||
min-height: 2px;
|
||||
background: var(--deepdrft-theme-secondary, #8A2BE2);
|
||||
background: var(--deepdrft-theme-secondary);
|
||||
border-radius: 2px 2px 0 0;
|
||||
transition: height 0.05s ease-out;
|
||||
}
|
||||
|
||||
/* Charleston (Light Mode) - Iron to gold colored bars */
|
||||
:global(.deepdrft-theme-light) .spectrum-bar {
|
||||
background: linear-gradient(to top, #1C1C1C 0%, #B8848C 50%, #C9A962 100%);
|
||||
}
|
||||
|
||||
/* Lowcountry (Dark Mode) - Coral to gold bars with warm glow */
|
||||
:global(.deepdrft-theme-dark) .spectrum-bar {
|
||||
background: linear-gradient(to top, #E07A5F 0%, #E9C46A 100%);
|
||||
box-shadow: 0 0 4px rgba(233, 196, 106, 0.4);
|
||||
}
|
||||
|
||||
/* Responsive adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.spectrum-container {
|
||||
|
||||
Reference in New Issue
Block a user