Styled search bar, changes in theme vars
This commit is contained in:
parent
ebf6564011
commit
b303b515e3
3 changed files with 96 additions and 14 deletions
|
@ -14,16 +14,18 @@
|
|||
<span class="logo-text">Privacy</span>
|
||||
<span class="logo-hex icon"></span>
|
||||
</div>
|
||||
<form action="/goto" method="get">
|
||||
<label>
|
||||
<input type="text" name="q" placeholder="Search query or URL">
|
||||
</label>
|
||||
<label class="input-clear">
|
||||
<input type="reset">
|
||||
</label>
|
||||
<label class="input-submit">
|
||||
<input type="submit">
|
||||
</label>
|
||||
<form action="/goto" method="get" class="flex-row">
|
||||
<div class="search-box flex-row">
|
||||
<div class="search">
|
||||
<input type="text" name="q" placeholder="Search query or URL">
|
||||
</div>
|
||||
<div class="search-clear">
|
||||
<input type="reset" id="clear" class="icon" value="" aria-label="Clear">
|
||||
</div>
|
||||
</div>
|
||||
<div class="search-submit">
|
||||
<input type="submit" class="icon" value="" aria-label="Search">
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
</body>
|
||||
|
|
Reference in a new issue