diff options
author | Dalf <alex@al-f.net> | 2014-01-04 00:27:40 +0100 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2014-01-04 00:27:40 +0100 |
commit | 75d22cd84759d87f6dff336cdd74f71e4bfcfa83 (patch) | |
tree | 329a549f318356d3cb442c5ab92efb555e5d2e5a /searx/static/css | |
parent | b1c6b0a3f15576722743fe49ab02cd80301fcfd9 (diff) | |
download | searxng-75d22cd84759d87f6dff336cdd74f71e4bfcfa83.tar.gz searxng-75d22cd84759d87f6dff336cdd74f71e4bfcfa83.zip |
[mod] no glitch on small screen like smartphone
Diffstat (limited to 'searx/static/css')
-rw-r--r-- | searx/static/css/style.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/searx/static/css/style.css b/searx/static/css/style.css index 0b87444e9..b24b97a68 100644 --- a/searx/static/css/style.css +++ b/searx/static/css/style.css @@ -75,7 +75,7 @@ a { text-decoration: none; } .result h3 { font-size: 0.9em;} .result { max-width: 70em; } -.url { font-weight: bold; } +.url { font-weight: bold; word-wrap:break-word; } .q { width: 30em; } @@ -140,3 +140,9 @@ tr:hover td { background: #DDDDDD; } #suggestions { max-width: 50em;} #suggestions form { display: inline; } #suggestions input { padding: 2px 6px; margin: 2px 4px; font-size: 0.8em; display: inline-block; background: #E4E4E4; border-radius: 4px; border: 0; cursor: pointer; } + +@media screen and (max-width: 740px) { + .right { margin: 5px; } + + #search_wrapper { max-width: 90%; clear:both } +} |