This commit is contained in:
Gnieark 2019-12-19 17:05:52 +01:00
parent f2004ede5a
commit bb0b3b50f3
2 changed files with 15 additions and 4 deletions

View File

@ -13,6 +13,20 @@ body{
margin-top: 1em; margin-top: 1em;
} }
nav{
display: grid;
grid-template-columns: 2em auto;
}
.moreoptions{
display: grid;
grid-template-columns: 20% 20% 20% 20%;
}
.moreoptions input, .moreoptions button{
font-size: 1em;
}
form{ form{
display: grid; display: grid;
grid-template-columns: auto; grid-template-columns: auto;
@ -42,6 +56,3 @@ body img{
.hidden-by-default{ .hidden-by-default{
display: none; display: none;
} }
#moreoptions input, #moreoptions button{
font-size: 1em;
}

View File

@ -3,7 +3,7 @@ function showHideMenu()
var doc = document.getElementById("moreoptions"); var doc = document.getElementById("moreoptions");
if(doc.className == "hidden-by-default") if(doc.className == "hidden-by-default")
{ {
doc.className = ""; doc.className = "moreoptions";
}else{ }else{
doc.className = "hidden-by-default"; doc.className = "hidden-by-default";
} }