diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-08-08 16:03:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-08 16:03:33 +0200 |
| commit | 5082b4f1658d7db39f4815cbe9dd43089943b426 (patch) | |
| tree | 7404240674ad0c5c3b23ce77dc2fb43c20174318 /searx/static/themes/simple/less/index.less | |
| parent | 98e6b4d830ef8101bfdf06e304b98f0125b8ce35 (diff) | |
| parent | ac59f5e1686ccc5d96055d23fd8bed6e8473f745 (diff) | |
Merge pull request #858 from dalf/simple
Simple theme
Diffstat (limited to 'searx/static/themes/simple/less/index.less')
| -rw-r--r-- | searx/static/themes/simple/less/index.less | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/searx/static/themes/simple/less/index.less b/searx/static/themes/simple/less/index.less new file mode 100644 index 000000000..e1efdac90 --- /dev/null +++ b/searx/static/themes/simple/less/index.less @@ -0,0 +1,43 @@ +.index { + + text-align: center; + + .title { + background: url('../img/searx.png') no-repeat; + width: 100%; + min-height: 80px; + background-position: center; + } + + h1 { + font-size: 5em; + visibility: hidden; + } + + #search { + margin: 0 auto; + background: inherit; + border: inherit; + } + + .search_filters { + display: block; + margin: 1em 0; + } + + .category label { + padding: 6px 10px; + border-bottom: initial !important; + } + +} + +@media screen and (max-width: 75em) { + + div.title { + h1 { + font-size: 1em; + } + } + +} |