MediaWiki: Common.css: Difference between revisions

From Bharatpedia
Jump to: navigation, search
(Created page with "→‎CSS placed here will be applied to all skins: @media (min-width: 768px) { #content { text-align: center; } } #content { text-align: center; }")
 
No edit summary
Line 8: Line 8:
#content {
#content {
     text-align: center;
     text-align: center;
}
img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
}

Revision as of 21:16, 30 July 2024

/* CSS placed here will be applied to all skins */
@media (min-width: 768px) {
    #content {
        text-align: center;
    }
}

#content {
     text-align: center;
}
img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}