mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
29 lines
373 B
CSS
29 lines
373 B
CSS
Screen {
|
|
background: white;
|
|
color:black;
|
|
}
|
|
|
|
#box1 {
|
|
width: 10;
|
|
height: 5;
|
|
background: red 40%;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
|
|
#box2 {
|
|
width: 10;
|
|
height: 5;
|
|
padding: 1;
|
|
background:blue 40%;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
#box3 {
|
|
width: 10;
|
|
height: 5;
|
|
background:green 40%;
|
|
border: heavy;
|
|
box-sizing: content-box;
|
|
}
|