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

43 lines
406 B
Plaintext

#lbl1 {
text-style: none;
}
#lbl2 {
text-style: bold;
}
#lbl3 {
text-style: italic;
}
#lbl4 {
text-style: reverse;
}
#lbl5 {
text-style: strike;
}
#lbl6 {
text-style: underline;
}
#lbl7 {
text-style: bold italic;
}
#lbl8 {
text-style: reverse strike;
}
Grid {
grid-size: 4;
grid-gutter: 1 2;
margin: 1 2;
height: 100%;
}
Label {
height: 100%;
}