diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-20 17:17:13 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-20 17:17:13 +0100 |
| commit | 549dcac588e810090e98cb753fde2828bef66325 (patch) | |
| tree | 72c7a84b8ccdb0cac25c3170910c00ffd9c2c076 /searx/static/themes/courgette/less | |
| parent | 8df6e7cc7b6e40e6137009b0f2a27578f284808e (diff) | |
| parent | 816a2c5cbefb73468b31316a007b59b8b8a23654 (diff) | |
Merge pull request #188 from Cqoicebordel/general-cookies
General cookies
Diffstat (limited to 'searx/static/themes/courgette/less')
| -rw-r--r-- | searx/static/themes/courgette/less/style.less | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/searx/static/themes/courgette/less/style.less b/searx/static/themes/courgette/less/style.less index 50cc2320a..fab3bd8bd 100644 --- a/searx/static/themes/courgette/less/style.less +++ b/searx/static/themes/courgette/less/style.less @@ -1,5 +1,6 @@ @color-main: #3498DB; +@color-focus: #0665A2; @color-other-links: #666; @color-fonts: #333; @center-width: 70em; @@ -39,11 +40,12 @@ a { } .title h1 { - background: url(../img/searx.png) no-repeat; - width: 319px; - height: 62px; - text-indent: -9999px; - margin: 0.5em auto 1em; + font-size:7em; + color:@color-main; + margin:0 auto; + line-height:100px; + margin-top:-20px; + padding-bottom:20px; } .center { @@ -240,7 +242,7 @@ a { #search_submit:hover, #search_submit:focus { - background-color: #0665A2; + background-color: @color-focus; } #sidebar { @@ -310,7 +312,7 @@ a { #sidebar input[type="submit"]:hover, #sidebar input[type="submit"]:focus { color: #FFF; - background-color: #0665A2; + background-color: @color-focus; } #results { @@ -432,7 +434,7 @@ input[type="submit"] { input[type="submit"]:hover, input[type="submit"]:focus { - background: #0665A2; + background: @color-focus; } .row { |