MediaWiki: Common.css: Difference between revisions

From Bharatpedia
Jump to: navigation, search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@media (min-width: 768px) {
@media (min-width: 768px) {
     #content {
     div#mw-content-text {
        text-align: center;
    text-align: center;
    }
}
}
 
}
#content {
div#mw-content-text {
    text-align: center;
    text-align: center;
}
}
img {
img {
Line 16: Line 15:
     display: block;
     display: block;
     margin: 0 auto;
     margin: 0 auto;
}
.firstHeading, .tweekiFirstHeading {
display: none;
}
}

Revision as of 21:22, 30 July 2024

/* CSS placed here will be applied to all skins */
@media (min-width: 768px) {
    div#mw-content-text {
    text-align: center;
}
}
div#mw-content-text {
    text-align: center;
}
img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.firstHeading, .tweekiFirstHeading {
display: none;
}