mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
46 lines
621 B
CSS
46 lines
621 B
CSS
|
|
|
|
Screen {
|
|
layout: vertical;
|
|
overflow: auto;
|
|
}
|
|
|
|
Widget {
|
|
margin:1;
|
|
}
|
|
|
|
#thing {
|
|
width: auto;
|
|
height: auto;
|
|
background:magenta;
|
|
margin: 1;
|
|
padding: 1;
|
|
border: solid white;
|
|
box-sizing: border-box;
|
|
border: solid white;
|
|
align-horizontal: center;
|
|
}
|
|
|
|
|
|
#thing2 {
|
|
border: solid white;
|
|
/* outline: heavy blue; */
|
|
height: 10;
|
|
padding: 1 2;
|
|
box-sizing: border-box;
|
|
|
|
max-height: 100vh;
|
|
|
|
background:green;
|
|
align-horizontal: center;
|
|
color:white;
|
|
}
|
|
|
|
|
|
#thing3 {
|
|
height: 10;
|
|
margin: 1;
|
|
background:blue;
|
|
align-horizontal: center;
|
|
}
|