Jump to content

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(11 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 */
.buy-button {
    width: 100px;
    height: 50px;
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
}
.buy-button:hover {
    background-color: #45a049;
}
.buy-button a.external::after {
    content: none!important;
    background-image: none!important;
}


.XinReality1 {
.XinReality1 {
Line 242: 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*/