MediaWiki:Common.css: Difference between revisions
Appearance
Xinreality (talk | contribs) Undo revision 24913 by Xinreality (talk) |
Xinreality (talk | contribs) No edit summary |
||
(16 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 */ | ||
body.page-Main_Page h1.firstHeading { display:none; } | body.page-Main_Page h1.firstHeading { display:none; } | ||
.XinReality1 { | .XinReality1 { | ||
Line 105: | Line 106: | ||
background: #DFE8FF; | background: #DFE8FF; | ||
} | } | ||
.needConfirmation { | |||
text-align: center; | |||
margin: 3px; | |||
margin-left:10%; | |||
margin-right:10%; | |||
border-collapse: collapse; | |||
border: 1px solid #aaa; | |||
background: #eab676; | |||
} | |||
/* Infobox template style */ | /* Infobox template style */ | ||
Line 206: | 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*/ |