mirror of
https://github.com/aelve/guide.git
synced 2024-11-27 10:10:50 +03:00
d466faf56e
Fixes #63
33 lines
525 B
Plaintext
33 lines
525 B
Plaintext
Description
|
|
============================================================
|
|
|
|
The search bar that is shown on the top of all pages.
|
|
|
|
|
|
HTML
|
|
============================================================
|
|
|
|
<form action="/haskell">
|
|
|
|
<input
|
|
type="text"
|
|
name="q"
|
|
id="search"
|
|
placeholder="search"
|
|
value="{{query}}">
|
|
|
|
</form>
|
|
|
|
|
|
CSS
|
|
============================================================
|
|
|
|
#search {
|
|
font-size: 200%;
|
|
font-weight: 200;
|
|
border: 1px solid #aaa;
|
|
border-radius: 3px;
|
|
padding: 3px 10px;
|
|
width: 100%;
|
|
}
|