mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 09:24:48 +00:00
148 lines
2.1 KiB
CSS
148 lines
2.1 KiB
CSS
body {
|
|
background-color: #121212;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.launcher {
|
|
background-color: #1e1e1e;
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.title-bar {
|
|
background-color: #1a1a1a;
|
|
color: #e0e0e0;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.sidebar {
|
|
background-color: #262626;
|
|
}
|
|
|
|
.nav-item:hover,
|
|
.nav-item.selected {
|
|
background-color: #333;
|
|
}
|
|
|
|
.main-panel {
|
|
background-color: #1e1e1e;
|
|
}
|
|
|
|
.top-bar {
|
|
background-color: #1a1a1a;
|
|
color: #e0e0e0;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.top-menu {
|
|
background-color: #1a1a1a;
|
|
color: #e0e0e0;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.main-content {
|
|
background-color: #121212;
|
|
scrollbar-color: #333 #121212;
|
|
}
|
|
|
|
.installations {
|
|
background-color: #1c1c1c;
|
|
}
|
|
|
|
.custom-select {
|
|
border: 2px solid #444;
|
|
background-color: #333;
|
|
color: #e0e0e0;
|
|
box-shadow: 4px 4px #111;
|
|
}
|
|
|
|
.custom-select:hover {
|
|
box-shadow: 6px 6px #111;
|
|
}
|
|
|
|
.custom-options {
|
|
border: 2px solid #444;
|
|
background-color: #222;
|
|
box-shadow: 4px 4px #111;
|
|
color: #e0e0e0;
|
|
scrollbar-color: #333 #222;
|
|
}
|
|
|
|
.custom-option {
|
|
border-bottom: 1px solid #444;
|
|
}
|
|
|
|
.custom-option:hover {
|
|
background-color: #333;
|
|
}
|
|
|
|
.play-button {
|
|
background-color: #444;
|
|
border: 2px solid #333;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.play-button:hover {
|
|
background-color: #555;
|
|
border-color: #444;
|
|
}
|
|
|
|
.bottom-bar {
|
|
background-color: #1a1a1a;
|
|
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.bottom-bar .bottom-bar-left {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.bottom-bar .bottom-bar-left:hover {
|
|
color: #aaa;
|
|
}
|
|
|
|
.bottom-bar .bottom-bar-right {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.minecraft-button {
|
|
background-color: #333;
|
|
border: 1px solid #444;
|
|
}
|
|
|
|
.minecraft-button:hover {
|
|
background-color: #444;
|
|
}
|
|
|
|
.minecraft-button:active {
|
|
background-color: #555;
|
|
}
|
|
|
|
.download-link {
|
|
background-color: #333;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.download-link:hover {
|
|
background-color: #444;
|
|
}
|
|
|
|
input[type='text'],
|
|
select {
|
|
border: 1px solid #444;
|
|
background-color: #1e1e1e;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
input[type='text']::placeholder,
|
|
select option {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
button {
|
|
background-color: #333;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #444;
|
|
}
|