mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 22:28:52 +00:00
89 lines
1.3 KiB
Plaintext
89 lines
1.3 KiB
Plaintext
body
|
|
{
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: Minecraft Default;
|
|
font-size: 36dp;
|
|
color: #ffffff;
|
|
background: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
div#message_box
|
|
{
|
|
width: 594dp;
|
|
height: auto;
|
|
margin: auto;
|
|
padding: 40dp 48dp;
|
|
decorator: image(images/lce/frame_MessageBox_background.png);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
p#title
|
|
{
|
|
color: #333333;
|
|
margin-bottom: 23dp;
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
|
|
div#text_container
|
|
{
|
|
width: 100%;
|
|
height: auto;
|
|
max-height: 400dp;
|
|
overflow: auto;
|
|
margin-bottom: 23dp;
|
|
padding: 8dp;
|
|
}
|
|
|
|
p#description
|
|
{
|
|
color: #333333;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
div#buttons
|
|
{
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
button
|
|
{
|
|
display: block;
|
|
width: 600dp;
|
|
height: 60dp;
|
|
margin-bottom: 7.5dp;
|
|
font-effect: shadow(1dp 1dp #000000);
|
|
text-align: center;
|
|
line-height: 60dp;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
decorator: image(mainButton);
|
|
}
|
|
|
|
button:hover
|
|
{
|
|
color: #ffff00;
|
|
decorator: image(mainButton_Hover);
|
|
}
|
|
|
|
button:last-child
|
|
{
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@spritesheet mainButton
|
|
{
|
|
src: "Assets/UI/images/lce/button/main-sheet.png";
|
|
|
|
mainButton: 0px 0px 200px 20px;
|
|
mainButton_Hover: 0px 20px 200px 20px;
|
|
} |