fix: 💄 Moved all styles to files

master
Keith Irwin 2024-01-01 10:33:19 -07:00
parent a5e92376a5
commit f29237f0f9
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
2 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,4 @@
<p><form method="POST" action="https://searxng.gf4.pw/search" style="display:flex;justify-content:space-between">
<input type="search" autofocus name="q" placeholder="Search for..." aria-label="Search for..." autocomplete="off" value accesskey="s" style="width:100%">
<button type="submit" style="flex-basis:fit-content">Go!</button>
<p><form class="websearch" method="POST" action="https://searxng.gf4.pw/search" style="display:flex;justify-content:space-between">
<input type="search" autofocus name="q" placeholder="Search for..." aria-label="Search for..." autocomplete="off" value accesskey="s">
<button type="submit">Go!</button>
</form></p>

View File

@ -135,3 +135,12 @@ body::after {
width: 100%;
height: 57.2052vw; /* Ratio of image */
}
/* Websearch */
form.websearch {
display: flex;
justify-content: space-between;
}
form.websearch input {
flex: 1;
}