From befffe7472e86978289e182e6ec433679537dcbd Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Sat, 14 Sep 2013 22:51:34 +0300 Subject: [PATCH] [ticket/11552] Basic rules for wrappers and header Basic rules for content wrapper, common block wrappers and header PHPBB3-11552 --- phpBB/styles/prosilver/theme/responsive.css | 47 +++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index f4342479b2..f2b2209091 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -1,2 +1,49 @@ /* Responsive Design ---------------------------------------- */ + +/* Content wrapper */ +html { + height: auto; +} + +body { + padding: 0 5px; +} + +#wrap { + min-width: 320px; + padding: 0; +} + +/* Common block wrappers */ +.headerbar, .navbar, .forabg, .forumbg, .post, .panel { + border-radius: 0; + margin-left: -5px; + margin-right: -5px; +} + +/* Logo block */ +#site-description { + float: none; + width: auto; + text-align: center; +} + +#logo { + /* change display value to inline-block to show logo */ + display: none; + float: none; + padding: 10px; +} + +#site-description h1, #site-description p { + text-align: inherit; + float: none; + margin: 5px; + line-height: 1.2em; +} + +#site-description p, #search-box { + display: none; +} +