47 lines
517 B
CSS
47 lines
517 B
CSS
.mybox {
|
|
background: #080;
|
|
padding: -10;
|
|
}
|
|
|
|
view.mybox {
|
|
padding: 10;
|
|
}
|
|
|
|
container {
|
|
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;
|
|
}
|