feat: improve UX with modern skip/solve buttons, ID sorting, and URL-safe filenames

This commit is contained in:
Hördle Bot
2025-11-21 21:44:16 +01:00
parent 3f544bf77c
commit 75a8a63b21
4 changed files with 69 additions and 17 deletions

View File

@@ -194,17 +194,30 @@ body {
}
.skip-button {
background: none;
width: 100%;
padding: 1rem 1.5rem;
margin-top: 1rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
color: #666;
text-decoration: underline;
font-size: 0.875rem;
margin-top: 0.5rem;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.skip-button:hover {
color: #000;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
.skip-button:active {
transform: translateY(0);
box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}
/* Messages */