mirror of
https://git.sanhost.net/sanasol/hytale-f2p.git
synced 2026-02-26 06:41:47 -03:00
pre-release & release game version [to check]
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user