mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
24 lines
274 B
CSS
24 lines
274 B
CSS
Screen {
|
|
layout: table;
|
|
table-columns: 2fr 1fr 1fr;
|
|
table-rows: 1fr 1fr;
|
|
table-gutter: 1 2;
|
|
}
|
|
|
|
Static {
|
|
border: solid white;
|
|
background: blue 20%;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
#foo {
|
|
row-span: 2;
|
|
}
|
|
|
|
#last {
|
|
column-span: 3;
|
|
margin: 1;
|
|
|
|
}
|