Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Difference between revisions of "MediaWiki:Common.css"

From PCGamingWiki, the wiki about fixing PC games
(Apologies in advance for butchering the CSS here!)
Line 57: Line 57:
 
.ad-header-container  
 
.ad-header-container  
 
{
 
{
max-height: auto!important;  
+
max-height: none!important;  
max-width: auto!important;
+
max-width: none!important;
 
margin: 5px auto 0 auto;
 
margin: 5px auto 0 auto;
 
}
 
}
Line 70: Line 70:
 
@media (max-width: 800px) {
 
@media (max-width: 800px) {
 
.ad-footer-container {
 
.ad-footer-container {
     max-height: auto!important;
+
     max-height: none!important;
     max-width: auto!important;
+
     max-width: none!important;
 
     margin: 5px auto 5px auto;
 
     margin: 5px auto 5px auto;
 
}
 
}
 
}
 
}

Revision as of 16:48, 7 May 2017

/* CSS placed here will be applied to all skins */


/* MPU ad */

#mpu {
width: 300px;
height: auto; 
max-height: 600px;
}

@media (max-width: 1000px) and (min-width: 800px) {
.page-Home .mw-body.mw-body-with-ads #mpu {
top: 380px;
}
}

@media (max-width: 800px) and (min-width: 400px) {
.page-Home .mw-body.mw-body-with-ads #mpu {
top: 430px;
}
}

@media (max-width: 500px) {
.page-Home .mw-body.mw-body-with-ads #mpu {
left: calc(50% - 150px);
}
}

/* Home */

.page-Home .mw-body.mw-body-with-ads .home-information-column:nth-of-type(2) 
{
padding-top: 660px;
}

@media (max-width: 1000px) {
.page-Home .mw-body.mw-body-with-ads .home-information-column:first-of-type {
padding-top: 640px;
}
.page-Home .home-information-column:nth-of-type(2) {
padding-top:0!important;
}
}


/* Header */

@media (max-width: 1160px) {
.ad-header-container {
max-height: auto!important;
max-width: auto!important;
}
}

@media (max-width: 800px) {
.ad-header-container 
{
max-height: none!important; 
max-width: none!important;
margin: 5px auto 0 auto;
}
#main-content {
margin: 5px 10px;
}
}

/* Footer */

@media (max-width: 800px) {
.ad-footer-container {
    max-height: none!important;
    max-width: none!important;
    margin: 5px auto 5px auto;
}
}