mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
21 lines
249 B
CSS
21 lines
249 B
CSS
#static1 {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#static2 {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
Screen {
|
|
background: white;
|
|
color: black;
|
|
}
|
|
|
|
App Static {
|
|
background: blue 20%;
|
|
height: 5;
|
|
margin: 2;
|
|
padding: 1;
|
|
border: wide black;
|
|
}
|