MediaWiki: Common.css: Difference between revisions
From Bharatpedia
(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 |
||
(6 intermediate revisions by the same user not shown) | |||
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) { | ||
.mw-parser-output { | |||
text-align: center; | |||
} | |||
} | |||
.mw-parser-output { | |||
text-align: center; | |||
} | } | ||
.mw-parser-output img { | |||
width: 150px; | |||
height: 150px; | |||
border-radius: 50%; | |||
object-fit: cover; | |||
display: block; | |||
margin: 0 auto; | |||
} | |||
.firstHeading, .tweekiFirstHeading { | |||
display: none; | |||
} | |||
.navbar-brand img { | |||
margin-top: 0px !important; | |||
} | } |
Latest revision as of 23:33, 31 July 2024
/* CSS placed here will be applied to all skins */ @media (min-width: 768px) { .mw-parser-output { text-align: center; } } .mw-parser-output { text-align: center; } .mw-parser-output img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; } .firstHeading, .tweekiFirstHeading { display: none; } .navbar-brand img { margin-top: 0px !important; }