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

19 lines
240 B
Plaintext

Screen {
layout: horizontal;
}
Label {
width: 1fr;
}
#lbl1 {
background: red 30%;
text-style: bold;
}
#lbl2 {
background: green 30%;
text-style: italic;
}
#lbl3 {
background: blue 30%;
text-style: reverse;
}