Split layout into separate Python and CSS files for docs example

This commit is contained in:
Darren Burns
2022-08-19 15:25:27 +01:00
parent a26cc3939d
commit 4cb57bb48e
3 changed files with 31 additions and 26 deletions

View 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;
}