diff options
Diffstat (limited to 'public/assets/css/bucky.css')
| -rw-r--r-- | public/assets/css/bucky.css | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/public/assets/css/bucky.css b/public/assets/css/bucky.css index c4792af..1b50fb2 100644 --- a/public/assets/css/bucky.css +++ b/public/assets/css/bucky.css @@ -832,9 +832,18 @@ pre br { line-height: 15px; padding: 20px; } -header .search_form { +.login header .search_form, +.signup header .search_form, +.index header .search_form { display: none; } +header .search_form { + float: right; + margin-top: 10px; +} +header .search_form input[type=text] { + width: 150px; +} /* PROFILE */ @@ -901,6 +910,17 @@ header .search_form { font-size: 16px; } +@media (min-width: 700px) and (max-width: 1000px) { + #sidebar { + display: none; + } + #content { + width: 100%; + } + .index header .search_form { + display: block; + } +} @media (max-width: 700px) { body { padding: 10px 10px; @@ -923,8 +943,10 @@ header .search_form { #sidebar .search_form { display: none; } - header .search_form { + header .search_form, + .index header .search_form { display: block; + margin-top: 0; } .search_form input[type='text'] { width: 250px; |
