diff options
author | Chris Xiong <chirs241097@gmail.com> | 2024-08-09 21:01:13 -0400 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2024-08-09 21:01:13 -0400 |
commit | c1ed25fe3502ca2665211e66df97fa1f6b87c6b2 (patch) | |
tree | 316ff097a243d125317bf0e88388612fcca83af7 /panel.css | |
parent | 42ac6fe04c2b1662c4661097cd7a040dccce426f (diff) | |
download | web-c1ed25fe3502ca2665211e66df97fa1f6b87c6b2.tar.xz |
Add a panel toggle button to some pages.
Diffstat (limited to 'panel.css')
-rw-r--r-- | panel.css | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -26,6 +26,11 @@ padding-left:1.5em; padding-top:0.5em; padding-bottom:0.5em; } +#panel li a#paneltoggle { +text-align:right; +padding:0.1em; +padding-right:0.3em; +} #panel li span { display:block; padding-left:1.5em; @@ -49,6 +54,12 @@ padding-top:0.5em; #content { margin-left: 16em; } +#content.expanded { +margin-left: 1em; +} +#panel.collapsed { +left:-15em; +} #content p{text-indent:2em;} #content .block h2{font-weight:normal;} #content .block h3{font-weight:normal;} @@ -68,4 +79,5 @@ padding: 1em; #panel{left:-15em;} #content{margin-left:1em;} #footer,div.footer{width:calc(100% - 1em);left:1em;} + #panel li a#paneltoggle{display:none;} } |