mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 09:24:48 +00:00
55 lines
944 B
CSS
55 lines
944 B
CSS
body {
|
|
background-image: url('/resources/images/backgrounds/themes/starfall.webp');
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
.launcher {
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.title-bar,
|
|
.top-title,
|
|
.top-nav,
|
|
.bottom-bar {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
color: #fff;
|
|
box-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.nav-bar .nav-item:hover,
|
|
.nav-bar .nav-item.selected {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
color: #00ccff;
|
|
}
|
|
|
|
.custom-select,
|
|
.custom-options {
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
color: #00ccff;
|
|
border: 2px solid #00ccff;
|
|
}
|
|
|
|
.custom-option:hover {
|
|
background-color: rgba(0, 204, 255, 0.2);
|
|
}
|
|
|
|
.play-button {
|
|
background-color: #00ccff;
|
|
border: 2px solid #0099cc;
|
|
}
|
|
|
|
.play-button:hover {
|
|
background-color: #00e6ff;
|
|
border-color: #0077aa;
|
|
}
|
|
|
|
.download-link {
|
|
background-color: #00ccff;
|
|
}
|
|
|
|
.download-link:hover {
|
|
background-color: #00e6ff;
|
|
}
|