mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
19 lines
248 B
CSS
19 lines
248 B
CSS
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;
|
|
}
|