help.html: adding back the link to factorcode.org.

It should probably be a cool logo or something...
master
John Benediktsson 2020-05-22 10:14:28 -07:00
parent 655f54af19
commit 150c6a6554
2 changed files with 14 additions and 0 deletions

View File

@ -86,6 +86,7 @@ M: pathname url-of
<form method="get" action="/search" style="float: right;"> <form method="get" action="/search" style="float: right;">
<input placeholder="Search" name="search" type="text"/> <input placeholder="Search" name="search" type="text"/>
<input type="submit" value="Go"/> <input type="submit" value="Go"/>
<a href="//factorcode.org">factorcode.org</a>
</form> </form>
</div> </div>
XML] ; XML] ;

View File

@ -54,6 +54,12 @@ tr:hover {
margin-right: 10px; margin-right: 10px;
} }
.navbar form a {
margin-left: 10px;
font-size: 1.0em;
font-weight: bold;
}
#container { #container {
max-width: 800px; max-width: 800px;
} }
@ -77,3 +83,10 @@ tr:hover {
width: 100px; width: 100px;
} }
} }
@media screen and (max-width: 600px) {
.navbar form a {
display: none;
}
}