mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-09 21:38:12 +00:00
161 lines
2.4 KiB
Plaintext
161 lines
2.4 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#pause_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#exit_dialog
|
|
{
|
|
display: none;
|
|
width: 100%;
|
|
margin-top: 16dp;
|
|
text-align: left;
|
|
padding: 24dp 32dp;
|
|
decorator: image(images/lce/frame_MessageBox_background.png);
|
|
}
|
|
|
|
p#exit_text
|
|
{
|
|
font-size: 31dp;
|
|
color: #333333;
|
|
margin-bottom: 23dp;
|
|
}
|
|
|
|
div#exit_buttons
|
|
{
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
button#exit_save,
|
|
button#exit_nosave,
|
|
button#exit_cancel
|
|
{
|
|
display: block;
|
|
width: 524dp;
|
|
height: 60dp;
|
|
margin-bottom: 11dp;
|
|
color: #ffffff;
|
|
font-size: 36dp;
|
|
text-align: center;
|
|
line-height: 60dp;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
|
|
}
|
|
|
|
button#exit_save:hover,
|
|
button#exit_nosave:hover,
|
|
button#exit_cancel:hover
|
|
{
|
|
color: #ffff00;
|
|
decorator: image(images/lce/Button/MainMenuButton_Over.png);
|
|
}
|
|
|
|
button#exit_cancel
|
|
{
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
div#save_dialog
|
|
{
|
|
display: none;
|
|
width: 100%;
|
|
margin-top: 16dp;
|
|
text-align: left;
|
|
padding: 24dp 32dp;
|
|
decorator: image(images/new/frame_background.png);
|
|
}
|
|
|
|
p#save_text
|
|
{
|
|
font-size: 31dp;
|
|
color: #333333;
|
|
margin-bottom: 23dp;
|
|
}
|
|
|
|
div#save_buttons
|
|
{
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
button#save_cancel,
|
|
button#save_confirm
|
|
{
|
|
display: block;
|
|
width: 524dp;
|
|
height: 60dp;
|
|
margin-bottom: 11dp;
|
|
color: #ffffff;
|
|
font-size: 36dp;
|
|
text-align: center;
|
|
line-height: 60dp;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
decorator: image(images/lce/Button/MainMenuButton_Norm.png);
|
|
}
|
|
|
|
button#save_cancel:hover,
|
|
button#save_confirm:hover
|
|
{
|
|
color: #ffff00;
|
|
decorator: image(images/lce/Button/MainMenuButton_Over.png);
|
|
}
|
|
|
|
button#save_confirm
|
|
{
|
|
margin-bottom: 0;
|
|
}
|