Add GitHub repository link to footer

This commit is contained in:
2025-12-13 12:13:21 +11:00
parent 63d52837ab
commit d728731d74
2 changed files with 44 additions and 0 deletions

View File

@@ -394,3 +394,34 @@ select:focus {
color: var(--text-secondary);
font-size: 0.85rem;
}
.footer p {
margin-bottom: 0.5rem;
}
.github-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-md);
color: var(--text-secondary);
text-decoration: none;
font-size: 0.85rem;
transition: all 0.3s ease;
}
.github-link:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.3);
color: var(--text-primary);
transform: translateY(-2px);
}
.github-icon {
width: 18px;
height: 18px;
}