mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11552] Basic rules for wrappers and header
Basic rules for content wrapper, common block wrappers and header PHPBB3-11552
This commit is contained in:
parent
5c3669eccb
commit
befffe7472
1 changed files with 47 additions and 0 deletions
|
@ -1,2 +1,49 @@
|
||||||
/* Responsive Design
|
/* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue