1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-30 03:30:17 +02:00

[ticket/12562] Add max-width to proSilver

PHPBB3-12562
This commit is contained in:
PayBas
2014-07-01 18:41:56 +02:00
parent 54a143c968
commit 3568eec4df
4 changed files with 35 additions and 5 deletions

View File

@@ -175,8 +175,24 @@ ol ol ul, ol ul ul, ul ol ul, ul ul ul {
/* Main blocks
---------------------------------------- */
#wrap {
padding: 0 20px;
border: 1px solid transparent;
border-radius: 12px;
margin: 0 auto;
max-width: 1152px;
min-width: 650px;
padding: 12px 20px;
}
@media only screen and (max-width: 1192px), only screen and (max-device-width: 1192px)
{
body {
padding: 0;
}
#wrap {
border: none;
border-radius: 0;
}
}
#simple-wrap {