mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 22:58:11 +00:00
56 lines
855 B
Plaintext
56 lines
855 B
Plaintext
body
|
|
{
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: Minecraft Default;
|
|
font-size: 36dp;
|
|
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);
|
|
}
|
|
|
|
div#buttons
|
|
{
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
button
|
|
{
|
|
display: block;
|
|
width: 674dp;
|
|
height: 60dp;
|
|
margin-bottom: 15dp;
|
|
text-align: center;
|
|
line-height: 60dp;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
decorator: image(mainButton);
|
|
}
|
|
|
|
button:hover
|
|
{
|
|
color: #ffff00;
|
|
decorator: image(mainButton_Hover);
|
|
}
|
|
|
|
@spritesheet mainButton
|
|
{
|
|
src: "Assets/UI/images/lce/button/main-sheet.png";
|
|
|
|
mainButton: 0px 0px 200px 20px;
|
|
mainButton_Hover: 0px 20px 200px 20px;
|
|
} |