mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-07-29 18:25:47 +02:00
39 lines
679 B
CSS
39 lines
679 B
CSS
.theme-switcher {
|
|
position: absolute;
|
|
top: 60px;
|
|
right: 10px;
|
|
background: #242424;
|
|
padding: 8px 12px;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
font-family: sans-serif;
|
|
font-size: 0.9rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.theme-switcher label {
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.theme-switcher select {
|
|
background: #fff;
|
|
border: 1px solid #242424;
|
|
border-radius: 6px;
|
|
padding: 4px 8px;
|
|
color: #000;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
transition: background 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
.theme-switcher select:hover,
|
|
.theme-switcher select:focus {
|
|
background: #474747;
|
|
color: #fff;
|
|
outline: none;
|
|
}
|