glasshouse/res/style.css

47 lines
489 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;
}
button {
background: #333;
fill-width: true;
height: 30;
transition: background 0.5;
}
button.highlight {
background: #a33;
}
button text {
align: middle middle;
}
button:hover {
background: #444;
}
button text {
align: middle middle;
color : #aaa;
transition : color;
}
button:hover text {
color : white;
}
button:active {
background: #666;
2023-07-30 22:08:39 +00:00
}