Files
textual/docs/examples/guide/layout/layers.tcss
Rodrigo Girão Serrão 5ee0ebfef4 Rename CSS files to TCSS.
Related issue: #3137.
2023-08-22 13:21:17 +01:00

23 lines
281 B
Plaintext

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