Jump to content

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:
body.page-Main_Page h1.firstHeading { display:none; }
body.page-Main_Page h1.firstHeading { display:none; }


/* Buy Button */
.external.text {
    background-image: none;
}
.buy-button:hover {
    background-color: #45a049;
}
.buy-button a.external {
    background-image: none!important;
}
/* Buy Button End */


.XinReality1 {
.XinReality1 {
Line 232: Line 218:
background-repeat: no-repeat!important;
background-repeat: no-repeat!important;
}
}
/* display mobile or desktop */
/* used by the front page start*/
/* Default styles for desktop (769px or more) */
.desktop-view {
    display: block;
}
.mobile-view {
    display: none;
}
@media only screen and (max-width: 768px) {
  .desktop-view { display: none !important; }
  .mobile-view { display: block !important; }
}
/* used by the front page end*/