glasshouse/res/style.css

47 lines
489 B
CSS

.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;
}