fix(manifesto): CTA hover color specificity, remove footer image

This commit is contained in:
justsisyphus 2026-01-30 17:13:33 +09:00
parent 862675c230
commit af91b5b662
2 changed files with 5 additions and 5 deletions

View File

@ -309,7 +309,6 @@ Human Intent → Agent Execution → Verified Result
<footer>
<div class="footer-content">
<img src="./images/footer-pattern.png" alt="Footer Pattern" class="footer-pattern">
<a href="https://github.com/code-yeongyu/oh-my-opencode" class="cta-link" target="_blank" rel="noopener">
Get Oh My OpenCode →
</a>

View File

@ -419,7 +419,10 @@ footer::before {
display: none;
}
.cta-link {
a.cta-link,
a.cta-link:hover,
a.cta-link:focus,
a.cta-link:active {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--text-primary);
@ -433,11 +436,9 @@ footer::before {
z-index: 3;
}
.cta-link:hover {
a.cta-link:hover {
transform: scale(1.05);
box-shadow: 0 0 40px rgba(255, 255, 255, 0.4), var(--glow-cyan);
color: #000;
text-decoration: none;
}
.final-statement {