Homepage icons: white with lift/shadow hover effect
Removed colored icons per user preference. Now using clean white icons with subtle drop shadow that lifts and deepens on hover for a "pop" visual cue without glow. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -9,32 +9,32 @@
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 1rem 1.5rem;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
text-decoration: none;
|
||||
transition: all 0.2s ease;
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
.home-icon i {
|
||||
font-size: 3rem;
|
||||
font-size: 3.5rem;
|
||||
color: #fff;
|
||||
margin-bottom: 0.5rem;
|
||||
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
|
||||
transition: all 0.2s ease;
|
||||
filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
.home-icon span {
|
||||
font-size: 0.7rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
opacity: 0;
|
||||
transform: translateY(-5px);
|
||||
transition: all 0.2s ease;
|
||||
transform: translateY(-8px);
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
.home-icon:hover i {
|
||||
transform: scale(1.2);
|
||||
filter: drop-shadow(0 0 12px currentColor);
|
||||
transform: translateY(-4px);
|
||||
filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
.home-icon:hover span {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
color: var(--header-gold);
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -54,9 +54,9 @@
|
||||
|
||||
<!-- Action Icons -->
|
||||
<div class="d-flex gap-5">
|
||||
<a href="/encode" class="home-icon"><i class="bi bi-lock-fill" style="color: #60a5fa;"></i><span>Encode</span></a>
|
||||
<a href="/decode" class="home-icon"><i class="bi bi-unlock-fill" style="color: #4ade80;"></i><span>Decode</span></a>
|
||||
<a href="/generate" class="home-icon"><i class="bi bi-key-fill" style="color: #fbbf24;"></i><span>Generate</span></a>
|
||||
<a href="/encode" class="home-icon"><i class="bi bi-lock-fill"></i><span>Encode</span></a>
|
||||
<a href="/decode" class="home-icon"><i class="bi bi-unlock-fill"></i><span>Decode</span></a>
|
||||
<a href="/generate" class="home-icon"><i class="bi bi-key-fill"></i><span>Generate</span></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user