Initial code

This commit is contained in:
3wc
2023-07-30 19:45:16 +01:00
commit 026fb13dfe
3 changed files with 178 additions and 0 deletions

46
res/style.css Normal file
View File

@ -0,0 +1,46 @@
.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;
}