responsive layout: move sidebars beneath main content.
Incidentally fixes bug with notes being mispositioned on top of the sidebar because the sidebar was declared as float: left.
This commit is contained in:
@@ -13,8 +13,21 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside {
|
div#page {
|
||||||
font-size: 18pt;
|
> div /* div#c-$controller */ {
|
||||||
|
> div /* div#a-$action */ {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
/* Move #sidebar below #content. */
|
||||||
|
> aside#sidebar {
|
||||||
|
font-size: 1.5em;
|
||||||
|
float: none;
|
||||||
|
width: auto;
|
||||||
|
order: 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#maintoggle {
|
#maintoggle {
|
||||||
|
|||||||
Reference in New Issue
Block a user