More actions
Content deleted Content added
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* === Global Skin Adjustments === */ |
|||
/* CSS placed here will be applied to all skins */ |
|||
/* Hide title and edit tools on main page */ |
/* Hide title and edit tools on the main page */ |
||
.page- |
.page-Main_Page .mw-side, |
||
.page- |
.page-Main_Page .firstHeading, |
||
.page- |
.page-Main_Page #siteSub { |
||
display: none!important; |
display: none !important; |
||
} |
} |
||
/* |
/* Blockquote spacing override for Citizen skin */ |
||
.skin-citizen blockquote { |
.skin-citizen blockquote { |
||
margin: 0.8rem 20px; |
margin: 0.8rem 20px; |
||
Line 13: | Line 13: | ||
} |
} |
||
/* === Footer Customization === */ |
|||
/* Hide footer links like Privacy policy, About, etc. */ |
|||
#footer-places { |
#footer-places { |
||
display: none !important; |
display: none !important; |
||
} |
} |
||
/* |
/* Reorder footer info sections */ |
||
#footer-info { |
#footer-info { |
||
display: flex; |
display: flex; |
||
Line 37: | Line 39: | ||
#footer-info-copyright { |
#footer-info-copyright { |
||
order: 3; |
order: 3; |
||
} |
|||
#footer-icons .footer-icon img { |
|||
filter: invert(100%) hue-rotate(180deg) !important; |
|||
} |
} |
Revision as of 20:34, 30 May 2025
/* === Global Skin Adjustments === */
/* Hide title and edit tools on the main page */
.page-Main_Page .mw-side,
.page-Main_Page .firstHeading,
.page-Main_Page #siteSub {
display: none !important;
}
/* Blockquote spacing override for Citizen skin */
.skin-citizen blockquote {
margin: 0.8rem 20px;
padding: 0;
}
/* === Footer Customization === */
/* Hide footer links like Privacy policy, About, etc. */
#footer-places {
display: none !important;
}
/* Reorder footer info sections */
#footer-info {
display: flex;
flex-direction: column;
}
#footer-info-lastmod {
order: 1;
}
#footer-info-viewcount {
order: 2;
width: 100%;
float: none;
clear: both;
margin-top: 0.5em;
}
#footer-info-copyright {
order: 3;
}