mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
data table columns
This commit is contained in:
34
old examples/example.css
Normal file
34
old examples/example.css
Normal file
@@ -0,0 +1,34 @@
|
||||
App > View {
|
||||
layout: dock;
|
||||
docks: side=left/1;
|
||||
}
|
||||
|
||||
#header {
|
||||
text: on #173f5f;
|
||||
height: 3;
|
||||
border: hkey white;
|
||||
}
|
||||
|
||||
#content {
|
||||
text: on #20639b;
|
||||
}
|
||||
|
||||
#footer {
|
||||
height: 3;
|
||||
border-top: hkey #0f2b41;
|
||||
text: #3a3009 on #f6d55c;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
text: #09312e on #3caea3;
|
||||
dock: side;
|
||||
width: 30;
|
||||
border-right: outer #09312e;
|
||||
offset-x: -100%;
|
||||
transition: offset 400ms in_out_cubic;
|
||||
}
|
||||
|
||||
#sidebar.-active {
|
||||
offset-x: 0;
|
||||
transition: offset 400ms in_out_cubic;
|
||||
}
|
||||
Reference in New Issue
Block a user