Put a search box in the layout
This commit is contained in:
parent
9336fbf3cd
commit
313fc16add
3 changed files with 37 additions and 7 deletions
|
@ -74,7 +74,7 @@ article>hr {
|
|||
margin-right: auto;
|
||||
}
|
||||
|
||||
header, article>* {
|
||||
header, article>*, .search {
|
||||
box-sizing: border-box;
|
||||
max-width: 616px;
|
||||
width: 100%;
|
||||
|
@ -274,10 +274,6 @@ h1>input {
|
|||
}
|
||||
|
||||
@media (min-width: 630px) {
|
||||
header {
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
.editor-controls {
|
||||
position: fixed;
|
||||
left: auto;
|
||||
|
@ -300,3 +296,38 @@ article ul.search-results {
|
|||
.snippet {
|
||||
white-space: pre-line;
|
||||
}
|
||||
|
||||
|
||||
.search {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.search input {
|
||||
font-size: 18px;
|
||||
font: inherit;
|
||||
font-size: 18px;
|
||||
line-height: 32px;
|
||||
border-radius: 18px;
|
||||
padding: 0 16px;
|
||||
border: 1px solid #ccc;
|
||||
transition: max-width 200ms;
|
||||
width: 100%;
|
||||
max-width: 250px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.search input:focus {
|
||||
max-width: 250px;
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
@media (min-width: 630px) {
|
||||
.search {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.search input {
|
||||
max-width: 125px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
<link href="_assets/style-{{style_css_checksum}}.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<form class=search action=_search method=GET><input type=search name=q placeholder=search autocomplete=off></form>
|
||||
{{{body}}}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,8 +4,6 @@
|
|||
</header>
|
||||
|
||||
<article>
|
||||
<form method="GET"><input autofocus name="q" autocomplete=off value="{{query}}"></form>
|
||||
|
||||
{{#hits?}}
|
||||
<p>Search results for the query <b>{{query}}</b>:</p>
|
||||
|
||||
|
|
Loading…
Reference in a new issue