glasshouse/res/style.css

47 lines
517 B
CSS
Raw Normal View History

2023-07-30 18:45:16 +00:00
.mybox {
background: #080;
padding: -10;
}
view.mybox {
padding: 10;
}
container {
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
}