pre-release & release game version [to check]

This commit is contained in:
AMIAY
2026-01-23 17:54:57 +01:00
parent 08c2218cf8
commit 3983fdb1bc
19 changed files with 888 additions and 302 deletions

View File

@@ -662,6 +662,57 @@ body {
box-shadow: none;
}
/* Radio buttons for install page */
.radio-group {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.radio-label {
display: flex;
align-items: center;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.radio-label:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(147, 51, 234, 0.5);
}
.radio-label .custom-radio {
position: absolute;
opacity: 0;
cursor: pointer;
}
.radio-label .custom-radio:checked ~ .radio-text {
color: #9333ea;
}
.radio-label:has(.custom-radio:checked) {
background: rgba(147, 51, 234, 0.15);
border-color: #9333ea;
box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}
.radio-text {
display: flex;
align-items: center;
color: #d1d5db;
font-weight: 500;
transition: color 0.3s ease;
}
.radio-text i {
margin-right: 0.5rem;
}
.launcher-container {
flex: 1;
display: flex;