Code: Select all
/* phpBB3 Style Sheet Prosilver
--------------------------------------------------------------
Extention name: Sidebar Menu
Original author: phpBB Limited ( https://www.phpbb.com/ )
Modified by: Martin ( http://www.martins-phpbb.com/ )
Modified by: Sniper_E ( http://sniper-e.com/ )
--------------------------------------------------------------
*/
/* Hide nav main */
.nav-main, .phpbb-navbar {
display: none !important;
}
.nav-breadcrumbs {
border-top: none !important;
}
.headerbar {
border-radius: 7px;
margin-bottom: 4px;
}
/* Sidebars */
div.spacer {
margin-top: 16px;
}
.sidebarwrap3 {
max-width: 1300px;
padding: 0;
margin: 0 auto;
}
.sidebarwrap1, .sidebarwrap2 {
max-width: 1200px;
padding: 0;
margin: 0 auto;
}
.sidebarwrapper {
position: relative;
}
.side-avatar img {
height: 26px;
width: 26px;
margin: -10px 0 -5px;
}
/* left sidebar, right section */
.fixedfluid-content {
padding: 0 0 0 200px;
}
/* left sidebar */
.fixedfluid-sidebar, .fixedfluidfixed-left {
position: absolute;
left: 10px;
top: 0;
width: 200px;
bottom: 0;
padding: 0;
}
/* right sidebar, left section */
.fluidfixed-content {
padding-right: 175px;
}
/* right sidebar */
.fluidfixed-sidebar, .fixedfluidfixed-right {
position: absolute;
right: -15px;
top: 0;
width: 190px;
bottom: 0;
padding: 0;
}
/* Both sidebars, middle section */
.fixedfluidfixed-content {
padding: 0 200px 0 200px;
}
.sidebar_avatar {
height: 15px;
}
/* Sidebar Styling */
.ad1, .ad2 {
display: block;
float: left;
}
.ad1 {
margin: 0 10px 10px 0;
}
.fixedfluid-sidebar ul.sidebar li, .fluidfixed-sidebar ul.sidebar li, .fixedfluidfixed-left ul.sidebar li, .fixedfluidfixed-right ul.sidebar li {
padding: 5px 10px;
}
/* Sidebar UCP */
.sidebar-link ul.side-navlinks {
display: none;
}
.left-sidebar .sidebar-link:hover ul.side-navlinks {
display: block;
position: absolute;
white-space: nowrap;
margin-top: -26px;
margin-bottom: 16px;
left: 170px;
transition: all 0.9s ease-in-out 0s;
z-index: 999;
}
.right-sidebar .sidebar-link:hover ul.side-navlinks {
display: block;
position: absolute;
white-space: nowrap;
margin-top: -26px;
margin-bottom: 16px;
right: 170px;
transition: all 0.9s ease-in-out 0s;
z-index: 999;
}
/* Sidebar colaspse/move buttons */
.side-colaspse-button, .side-expand-button { width: 16px;height:16px;float: right; }
.side-left-button, .side-right-button, .side-up-button, .side-down-button { width: 11px;height:11px;float: right;margin-right: 5px; }
.side-colaspse-button { background-image: url("./images/icon_colaspse.gif"); }
.side-expand-button { background-image: url("./images/icon_expand.gif"); }
.side-left-button { background-image: url("./images/icon_left_arrow.gif"); }
.side-right-button { background-image: url("./images/icon_right_arrow.gif"); }
.side-up-button { background-image: url("./images/icon_up_arrow.gif"); }
.side-down-button { background-image: url("./images/icon_down_arrow.gif"); }
@media only screen and (max-width: 1300px), only screen and (max-device-width: 1300px) {
.nav-main, .phpbb-navbar {
display: block !important;
}
.nav-breadcrumbs {
border-top: 1px solid #FFFFFF !important;
}
.headerbar {
border-radius: 7px 7px 0 0;
margin-bottom: -1px;
}
.sidebarwrap {
max-width: 1000px !important;
padding: 0;
}
.fixedfluid-content {
padding: 0;
}
.fixedfluid-sidebar, .fixedfluidfixed-left {
display: none;
width: 0;
}
/* right sidebar, left section */
.fluidfixed-content {
padding-right: 0;
}
/* right sidebar */
.fluidfixed-sidebar, .fixedfluidfixed-right {
display: none;
width: 0;
}
/* Both sidebars, middle section */
.fixedfluidfixed-content {
padding: 0;
}
}