Files
textual/docs/examples/styles/background.css
2022-08-13 21:39:31 +01:00

15 lines
213 B
CSS

Static {
height: 1fr;
content-align: center middle;
color: white;
}
#static1 {
background: red;
}
#static2 {
background: rgb(0, 255, 0);
}
#static3 {
background: hsl(240, 100%, 50%);
}