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;
}
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{
display: grid;
grid-template-columns: auto;
@ -42,6 +56,3 @@ body img{
.hidden-by-default{
display: none;
}
#moreoptions input, #moreoptions button{
font-size: 1em;
}

View File

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