glasshouse/res/style.css

87 lines
1.0 KiB
CSS
Raw Normal View History

2024-02-14 03:21:02 +00:00
text {
font : url("res/font/minecraftia_regular_6.fnt")
}
game-container {
background: blue;
}
2023-07-30 18:45:16 +00:00
.mybox {
background: #080;
padding: -10;
}
2024-02-14 03:21:02 +00:00
heading.mybox {
2023-07-30 18:45:16 +00:00
padding: 10;
}
2024-02-14 03:21:02 +00:00
title-scene {
2023-07-30 18:45:16 +00:00
max-width: 300;
layout: vertical;
}
2024-02-11 01:49:44 +00:00
menubutton {
2023-07-30 18:45:16 +00:00
background: #333;
fill-width: true;
height: 30;
transition: background 0.5;
}
2024-02-11 01:49:44 +00:00
menubutton.highlight {
2023-07-30 18:45:16 +00:00
background: #a33;
}
2024-02-11 01:49:44 +00:00
menubutton text {
2023-07-30 18:45:16 +00:00
align: middle middle;
}
2024-02-11 01:49:44 +00:00
menubutton:hover {
2023-07-30 18:45:16 +00:00
background: #444;
}
2024-02-11 01:49:44 +00:00
menubutton text {
2023-07-30 18:45:16 +00:00
align: middle middle;
color : #aaa;
transition : color;
}
2024-02-11 01:49:44 +00:00
menubutton:hover text {
2023-07-30 18:45:16 +00:00
color : white;
}
2024-02-11 01:49:44 +00:00
menubutton:active {
2023-07-30 18:45:16 +00:00
background: #666;
2023-07-30 22:08:39 +00:00
}
2024-02-18 15:25:03 +00:00
flow.dialogue-container {
fill-width: true;
height: 20;
layout: vertical;
2024-02-18 15:25:03 +00:00
}
dialogue-box {
fill-width: true;
height: 20;
/* background: tile("ui.png", 5, 5); */
/* background-tile-pos: 1 1; */
background: blue;
padding: 10;
2024-02-18 16:56:45 +00:00
alpha: 0.9;
2024-02-18 15:25:03 +00:00
}
dialogue-options {
fill-width: true;
layout: vertical;
2024-02-18 15:25:03 +00:00
}
dialogue-option {
fill-width: true;
background: green;
padding: 10;
2024-02-18 16:56:45 +00:00
alpha: 0.9;
}
dialogue-option.disabled {
alpha: 0.5;
}