mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
24
docs/examples/styles/layout.css
Normal file
24
docs/examples/styles/layout.css
Normal file
@@ -0,0 +1,24 @@
|
||||
#vertical-layout {
|
||||
layout: vertical;
|
||||
background: darkmagenta;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#horizontal-layout {
|
||||
layout: horizontal;
|
||||
background: darkcyan;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#center-layout {
|
||||
layout: center;
|
||||
background: darkslateblue;
|
||||
height: 7;
|
||||
}
|
||||
|
||||
Static {
|
||||
margin: 1;
|
||||
width: 12;
|
||||
color: black;
|
||||
background: yellowgreen;
|
||||
}
|
||||
27
docs/examples/styles/layout.py
Normal file
27
docs/examples/styles/layout.py
Normal file
@@ -0,0 +1,27 @@
|
||||
from textual import layout
|
||||
from textual.app import App
|
||||
from textual.widget import Widget
|
||||
from textual.widgets import Static
|
||||
|
||||
|
||||
class LayoutApp(App):
|
||||
def compose(self):
|
||||
yield layout.Container(
|
||||
Static("Layout"),
|
||||
Static("Is"),
|
||||
Static("Vertical"),
|
||||
id="vertical-layout",
|
||||
)
|
||||
yield layout.Container(
|
||||
Static("Layout"),
|
||||
Static("Is"),
|
||||
Static("Horizontal"),
|
||||
id="horizontal-layout",
|
||||
)
|
||||
yield layout.Container(
|
||||
Static("Center"),
|
||||
id="center-layout",
|
||||
)
|
||||
|
||||
|
||||
app = LayoutApp(css_path="layout.css")
|
||||
Reference in New Issue
Block a user