redesign #1
@ -8,11 +8,11 @@ function collapseSidebar() {
|
|||||||
|
|
||||||
function sidebarToggle() {
|
function sidebarToggle() {
|
||||||
var bar = document.getElementById("sidebar");
|
var bar = document.getElementById("sidebar");
|
||||||
if (bar.style.height === "0") {
|
if (bar.style.height === "0px") {
|
||||||
bar.style.height = "100%";
|
bar.style.height = "100%";
|
||||||
bar.style.display = "block";
|
bar.style.display = "block";
|
||||||
} else {
|
} else {
|
||||||
bar.style.height = "0";
|
bar.style.height = "0px";
|
||||||
bar.style.display = "none";
|
bar.style.display = "none";
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -37,7 +37,7 @@
|
|||||||
top: 40px;
|
top: 40px;
|
||||||
right: 0;
|
right: 0;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
height: 0;
|
height: 0px;
|
||||||
display: none;
|
display: none;
|
||||||
max-width: 60%;
|
max-width: 60%;
|
||||||
background-color: darkslategrey;
|
background-color: darkslategrey;
|
||||||
|
Loading…
Reference in New Issue
Block a user