textual/docs/examples/guide/layout/layers.css
2022-12-20 11:16:31 +00:00

22 lines
281 B
CSS

Screen {
align: center middle;
layers: below above;
}
Static {
width: 28;
height: 8;
color: auto;
content-align: center middle;
}
#box1 {
layer: above;
background: darkcyan;
}
#box2 {
layer: below;
background: orange;
offset: 12 6;
}