diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2021-08-28 20:59:00 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2021-08-28 20:59:00 +0200 |
commit | 28e77dd8f293afb067b6252cd3472c16bb92dcec (patch) | |
tree | 5e49f69ae2e878ffb2f8b090ded102d4e5d57bcc /src/hp.html | |
parent | updated changelog and bumped to 0.0.13-1 (diff) | |
download | sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.tar sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.tar.gz sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.tar.bz2 sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.tar.lz sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.tar.xz sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.tar.zst sear.c-28e77dd8f293afb067b6252cd3472c16bb92dcec.zip |
Diffstat (limited to 'src/hp.html')
-rw-r--r-- | src/hp.html | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/src/hp.html b/src/hp.html deleted file mode 100644 index e1ab301..0000000 --- a/src/hp.html +++ /dev/null @@ -1,91 +0,0 @@ -<!DOCTYPE html> -<html lang=sl> - <!-- this file is a printf format. be sure to escape percent signs with percent percent. --> - <!-- this format requires the following types (in order): query string, query string, additional form elements, result info string, results html string --> - <head> - <meta charset=UTF-8 /> - <title> - %s :: sear.c - </title> - <meta name=viewport content="width=device-width, initial-scale=1.0"> - <style> - INSERT-STYLESHEET-HERE - </style> - <link rel="shortcut icon" href=data:image/x-icon;, type=image/x-icon> <!-- prevents favicon lookups --> - <link rel=icon href=data:;base64,iVBORw0KGgo=> - <link rel=search type=application/opensearchdescription+xml href=/osdd.xml> - <style> - input[type=password], input[type=text], input[type=submit], input[type=button] { - height: 1cm; - font-size: large; - } - .result:hover { - background: var(--bgc2); - } - .container { - display: flex; - flex-direction: row; - flex-wrap: nowrap; - justify-content: center; - align-items: stretch; - } - input[name=q] { - flex-grow: 4; - } - input[type=submit] { - flex-basis: 12.5%%; - } - .SC_LOG_ERROR { - color: red; - } - .SC_LOG_WARNING { - color: orange; - } - .SC_LOG_INFO { - color: lightgreen; - } - .SC_LOG_DEBUG { - color: magenta; - } - .breadcrumb { - color: var(--fgc2); - font-size: small; /* small is relative to parent (h4) size */ - } - .result h4 { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin-bottom: 0.314159265358em; - } - .result p { - margin-top: 0.314159265358em; - } - .result img { - height: 10em; - } - .result img:hover { - height: 20em; /* biggah pictah onah hovrah */ - } - </style> - </head> - <body> - <form class=container action=.> - <input accesskey=4 type=text name=q value="%s" placeholder="sear.c ..." /> <!-- see www.standardaccesskeys.com --> - <input type=submit value=🔍 /> <!-- magnifying glass emoji --> - <input type=submit name=f value=Ʊ /> <!-- horseshoe unicode character --> - <input type=submit name=i value=🖼 /> <!-- framed picture emoji - img search --> - <!-- <input type=submit name=v value=🎬/> --> <!-- that thing they use in movies - vid search N/I --> - %s - </form> - <h3> - %s - </h3> - %s - <hr> - <h4 align=center> - <a href=//git.sijanec.eu/sijanec/sear.c > - sear.c - </a> - </h4> - </body> -</html> |