87 lines
1.0 KiB
CSS
87 lines
1.0 KiB
CSS
text {
|
|
font : url("res/font/minecraftia_regular_6.fnt")
|
|
}
|
|
|
|
game-container {
|
|
background: blue;
|
|
}
|
|
|
|
.mybox {
|
|
background: #080;
|
|
padding: -10;
|
|
}
|
|
|
|
heading.mybox {
|
|
padding: 10;
|
|
}
|
|
|
|
title-scene {
|
|
max-width: 300;
|
|
layout: vertical;
|
|
}
|
|
|
|
menubutton {
|
|
background: #333;
|
|
fill-width: true;
|
|
height: 30;
|
|
transition: background 0.5;
|
|
}
|
|
|
|
menubutton.highlight {
|
|
background: #a33;
|
|
}
|
|
|
|
menubutton text {
|
|
align: middle middle;
|
|
}
|
|
|
|
menubutton:hover {
|
|
background: #444;
|
|
}
|
|
|
|
menubutton text {
|
|
align: middle middle;
|
|
color : #aaa;
|
|
transition : color;
|
|
}
|
|
|
|
menubutton:hover text {
|
|
color : white;
|
|
}
|
|
|
|
menubutton:active {
|
|
background: #666;
|
|
}
|
|
|
|
flow.dialogue-container {
|
|
fill-width: true;
|
|
height: 20;
|
|
layout: vertical;
|
|
}
|
|
|
|
dialogue-box {
|
|
fill-width: true;
|
|
height: 20;
|
|
/* background: tile("ui.png", 5, 5); */
|
|
/* background-tile-pos: 1 1; */
|
|
background: blue;
|
|
padding: 10;
|
|
alpha: 0.9;
|
|
}
|
|
|
|
dialogue-options {
|
|
fill-width: true;
|
|
layout: vertical;
|
|
}
|
|
|
|
dialogue-option {
|
|
fill-width: true;
|
|
background: green;
|
|
padding: 10;
|
|
alpha: 0.9;
|
|
}
|
|
|
|
dialogue-option.disabled {
|
|
alpha: 0.5;
|
|
}
|