Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Assets/UI/SettingsMenu.rcss
GabsPuNs 197e88a72f Update Localisation
* Stringtables now support IDs and Strings at the same time. DLCs have a new branch for RMLUI now.
* Removed hardcoded StringTableNameMap for use Strings instead of IDs for RMLUI.
* Strings in RMLUI now uses [] since {} is used for data and it could affect future menus.
* Removed GetStringTable. app.GetString now support WStrings.
2026-06-13 19:44:27 -04:00

102 lines
1.5 KiB
Plaintext

body
{
width: 100%;
height: 100%;
font-family: Minecraft Default;
font-size: 14dp;
font-effect: shadow(1dp 1dp #000000);
color: #ffffff;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
}
div#settings_menu
{
width: 624dp;
height: 330dp;
margin: auto;
background: rgba(0, 0, 0, 0.65);
border-radius: 8dp;
padding: 40dp 48dp;
}
div#buttons
{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
button
{
display: block;
width: 674dp;
height: 60dp;
margin-bottom: 15dp;
color: #ffffff;
font-size: 36dp;
text-align: center;
line-height: 60dp;
cursor: pointer;
background: transparent;
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
}
button:hover
{
color: #ffff00;
decorator: image(images/lce/Button/MainMenuButton_Over.png);
}
div#confirm_dialog
{
display: none;
width: 100%;
margin-top: 16dp;
text-align: center;
}
p#confirm_text
{
font-size: 31dp;
color: #ffffff;
margin-bottom: 23dp;
}
div#confirm_buttons
{
width: 100%;
display: flex;
justify-content: center;
gap: 10dp;
}
button#confirm_no,
button#confirm_yes
{
display: inline-block;
width: auto;
min-width: 204dp;
height: 58dp;
margin: 0;
padding-left: 29dp;
padding-right: 29dp;
color: #ffffff;
font-size: 36dp;
text-align: center;
line-height: 58dp;
cursor: pointer;
background: transparent;
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
}
button#confirm_no:hover,
button#confirm_yes:hover
{
color: #ffff00;
decorator: image(images/lce/Button/MainMenuButton_Over.png);
}