MediaWiki:Common.css: Difference between revisions
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 */ | ||
/ | /* Float infoboxes to the right */ | ||
.infobox { | .infobox { | ||
float: right; | float: right; | ||
Line 8: | Line 8: | ||
} | } | ||
/ | /* Hide page name on the home page */ | ||
body.page-Main_Page h1#firstHeading { | body.page-Main_Page h1#firstHeading { | ||
color: lime; | color: lime; | ||
Line 14: | Line 14: | ||
} | } | ||
/ | /* Prettify stub boxes */ | ||
.stub-box { | .stub-box { | ||
max-width: 600px; | max-width: 600px; | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
background-color: #e9e9e9; | background-color: #e9e9e9; | ||
border-left: 4px solid #09bb62; | border-left: 4px solid #09bb62; | ||
padding: 10px 15px; | padding: 10px 15px; | ||
border-radius: 8px; | border-radius: 8px; | ||
Line 32: | Line 32: | ||
padding: 0; | padding: 0; | ||
} | } | ||
.stub-image img { | .stub-image img { | ||
display: block; | display: block; | ||
Line 45: | Line 44: | ||
} | } | ||
.stub-word { | .stub-word { | ||
color: #4f504c; | color: #4f504c; | ||
} | } |