glasshouse/res/style.css

85 lines
995 B
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;
min-height: 20;
layout: vertical;
}
dialogue-box {
fill-width: true;
background: blue;
padding: 10;
alpha: 0.9;
min-height: 20;
}
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;
}