Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Assets/UI/PauseMenu.rcss
2026-06-11 19:37:03 -04:00

155 lines
2.3 KiB
Plaintext

body
{
width: 100%;
height: 100%;
font-family: Minecraft Default;
font-size: 14px;
font-effect: shadow(1px 1px #000000);
color: #ffffff;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
}
div#pause_menu
{
width: 624px;
height: auto;
margin: auto;
background: rgba(0, 0, 0, 0.65);
border: 2px solid #555555;
border-radius: 8px;
padding: 40px 48px;
}
div#buttons
{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
button
{
display: block;
width: 524px;
height: 64px;
margin-bottom: 11px;
color: #ffffff;
font-size: 25px;
text-align: center;
line-height: 64px;
cursor: pointer;
border: none;
background: transparent;
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
}
button:hover
{
decorator: image(images/lce/Button/MainMenuButton_Over.png);
}
div#exit_dialog
{
display: none;
width: 100%;
margin-top: 16px;
text-align: center;
}
p#exit_text
{
font-size: 31px;
color: #ffffff;
margin-bottom: 23px;
}
div#exit_buttons
{
width: 100%;
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
button#exit_save,
button#exit_nosave,
button#exit_cancel
{
display: inline-block;
width: auto;
min-width: 233px;
height: 58px;
margin: 0;
padding-left: 29px;
padding-right: 29px;
color: #ffffff;
font-size: 22px;
text-align: center;
line-height: 58px;
cursor: pointer;
border: none;
background: transparent;
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
}
button#exit_save:hover,
button#exit_nosave:hover,
button#exit_cancel:hover
{
decorator: image(images/lce/Button/MainMenuButton_Over.png);
}
div#save_dialog
{
display: none;
width: 100%;
margin-top: 16px;
text-align: center;
}
p#save_text
{
font-size: 31px;
color: #ffffff;
margin-bottom: 23px;
}
div#save_buttons
{
width: 100%;
display: flex;
justify-content: center;
gap: 10px;
}
button#save_cancel,
button#save_confirm
{
display: inline-block;
width: auto;
min-width: 204px;
height: 58px;
margin: 0;
padding-left: 29px;
padding-right: 29px;
color: #ffffff;
font-size: 22px;
text-align: center;
line-height: 58px;
cursor: pointer;
border: none;
background: transparent;
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
}
button#save_cancel:hover,
button#save_confirm:hover
{
decorator: image(images/lce/Button/MainMenuButton_Over.png);
}