mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
30 lines
342 B
Plaintext
30 lines
342 B
Plaintext
#one {
|
|
text-align: left;
|
|
background: lightblue;
|
|
}
|
|
|
|
#two {
|
|
text-align: center;
|
|
background: indianred;
|
|
}
|
|
|
|
#three {
|
|
text-align: right;
|
|
background: palegreen;
|
|
}
|
|
|
|
#four {
|
|
text-align: justify;
|
|
background: palevioletred;
|
|
}
|
|
|
|
Label {
|
|
padding: 1 2;
|
|
height: 100%;
|
|
color: auto;
|
|
}
|
|
|
|
Grid {
|
|
grid-size: 2 2;
|
|
}
|