mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-09-26 01:51:10 +00:00
114 lines
2.3 KiB
CSS
114 lines
2.3 KiB
CSS
@import "tailwindcss";
|
|
|
|
@font-face {
|
|
font-family: 'Mojangles';
|
|
src: url('/fonts/Mojangles.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
.gamepad-connected-indicator {
|
|
position: fixed;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
color: #FFFF55;
|
|
font-size: 10px;
|
|
z-index: 1000;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.mc-setup-nav-btn {
|
|
border: 4px solid transparent;
|
|
border-image: url('/images/Button_Background.png') 4 stretch;
|
|
image-rendering: pixelated;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.mc-setup-nav-btn:hover:not(:disabled) {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.mc-setup-nav-btn:active:not(:disabled) {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.mc-setup-nav-btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background-color: #000;
|
|
font-family: 'Mojangles', monospace;
|
|
-webkit-font-smoothing: none;
|
|
}
|
|
|
|
.mc-button {
|
|
background-image: url('/images/button.png');
|
|
background-size: 100% 100%;
|
|
image-rendering: pixelated;
|
|
transition: none;
|
|
}
|
|
|
|
.mc-button:hover:not(:disabled) {
|
|
background-image: url('/images/button_highlighted.png');
|
|
}
|
|
|
|
.mc-text-shadow {
|
|
text-shadow: 1px 1px 0px rgba(63, 63, 63, 1);
|
|
}
|
|
|
|
.mc-text-shadow-hover {
|
|
text-shadow: 1px 1px 0px rgba(63, 90, 63, 1);
|
|
}
|
|
|
|
|
|
@keyframes sga-burst {
|
|
0% {
|
|
transform: translate(-50%, -50%) scale(0.5);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
transform: translate(calc(-50% + var(--vX)), calc(-50% + var(--vY))) scale(1.2) rotate(var(--rot));
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.particle-burst {
|
|
animation: sga-burst 0.8s ease-out forwards;
|
|
filter: drop-shadow(0 0 8px rgba(180, 100, 255, 0.9));
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 14px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: url('/images/backgroundframe.png') center;
|
|
background-size: 100% auto;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: url('/images/SliderHandlerBackground.png') no-repeat center;
|
|
background-size: 100% 100%;
|
|
image-rendering: pixelated;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.no-animations * {
|
|
transition: none !important;
|
|
animation: none !important;
|
|
}
|
|
|
|
.scrollbar-hide::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.scrollbar-hide {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
} |