landing page: set focus on search field

Also updates the CSS to reduce the "focus highlight" applied
by browsers.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-05-15 16:36:33 +02:00
parent ad9704bec7
commit 6d7de2ee14
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
2 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,7 @@
autocomplete="off"
spellcheck="false"
dir="auto"
autofocus
/>
</form>
</div>

View File

@ -105,6 +105,11 @@ body#landing {
height: 50px;
line-height: 24px;
padding: 13px 20px;
&:focus {
box-shadow: none;
outline: none;
}
}
}