diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-27 16:19:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-27 16:19:51 +0200 |
| commit | a1c55caa719009e3f50ffe24a92ac8c6622d1da0 (patch) | |
| tree | 96cc985c8238d9ed22713db63394daadfb9436e9 /searx/static/themes/simple/src/less/index.less | |
| parent | b046322c7b9467a7de6e9e289e1c5b0c0baaf4a6 (diff) | |
| parent | e8ed56251aff1ce7241cdd3ed9c639990ef4ddb8 (diff) | |
Merge pull request #345 from MrPaulBlack/simple-theme-changes
simple theme css refactor
Diffstat (limited to 'searx/static/themes/simple/src/less/index.less')
| -rw-r--r-- | searx/static/themes/simple/src/less/index.less | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/searx/static/themes/simple/src/less/index.less b/searx/static/themes/simple/src/less/index.less index 3a275763c..a74988a72 100644 --- a/searx/static/themes/simple/src/less/index.less +++ b/searx/static/themes/simple/src/less/index.less @@ -1,3 +1,7 @@ +#main_index { + margin-top: 16em; +} + .index { text-align: center; @@ -17,6 +21,7 @@ margin: 0 auto; background: inherit; border: inherit; + padding: 0; } .search_filters { @@ -30,10 +35,20 @@ } } -@media screen and (max-width: 75em) { +@media screen and (max-width: 80em) { div.title { h1 { font-size: 1em; } } + + #main_index { + margin-top: 6em; + } +} + +@media screen and (max-width: 50em) { + #main_index { + margin-top: 0; + } } |