MediaWiki:Common.css: Difference between revisions

From Marupedia
Jump to navigation Jump to search
No edit summary
No edit summary
Line 44: Line 44:
.page-Home #catlinks {
.page-Home #catlinks {
     display: none;
     display: none;
}
/* ===============================
  ULTRA CLEAN HOME PAGE (Marupedia)
  =============================== */
/* Hide page tabs bar completely */
.page-Home #p-views,
.page-Home #ca-nstab-main,
.page-Home #ca-talk,
.page-Home #ca-more,
.page-Home .vector-page-toolbar {
    display: none !important;
}
/* Hide top search box + icon */
.page-Home #p-search,
.page-Home .vector-search-box {
    display: none !important;
}
/* Hide personal tools (login, username, prefs) */
.page-Home #p-personal {
    display: none !important;
}
/* Hide site header strip spacing */
.page-Home .vector-header-container {
    display: none !important;
}
/* Hide sidebar completely */
.page-Home #mw-panel {
    display: none !important;
}
/* Full width content */
.page-Home #content {
    margin-left: 0 !important;
}
/* Remove page title "Home" */
.page-Home h1.firstHeading {
    display: none !important;
}
/* Remove footer links */
.page-Home #footer-places,
.page-Home #footer-icons {
    display: none !important;
}
/* Remove categories */
.page-Home #catlinks {
    display: none !important;
}
}

Revision as of 13:58, 12 January 2026

/* CSS placed here will be applied to all skins */
.page-Home #mw-panel {
  display: none;
}
/* =========================
   CLEAN HOME PAGE (Marupedia)
   ========================= */

/* Hide page tabs (Read / Edit / Edit source / History) on Home */
.page-Home #p-views,
.page-Home #ca-edit,
.page-Home #ca-editsource,
.page-Home #ca-history {
    display: none !important;
}

/* Hide user menu (Login, Username, Preferences) */
.page-Home #p-personal {
    display: none !important;
}

/* Hide sidebar completely on Home */
.page-Home #mw-panel {
    display: none !important;
}

/* Make content full width */
.page-Home #content {
    margin-left: 0 !important;
}

/* Hide footer links */
.page-Home #footer-places,
.page-Home #footer-icons {
    display: none !important;
}

/* Remove page title "Home" */
.page-Home h1.firstHeading {
    display: none;
}

/* Remove category links at bottom */
.page-Home #catlinks {
    display: none;
}
/* ===============================
   ULTRA CLEAN HOME PAGE (Marupedia)
   =============================== */

/* Hide page tabs bar completely */
.page-Home #p-views,
.page-Home #ca-nstab-main,
.page-Home #ca-talk,
.page-Home #ca-more,
.page-Home .vector-page-toolbar {
    display: none !important;
}

/* Hide top search box + icon */
.page-Home #p-search,
.page-Home .vector-search-box {
    display: none !important;
}

/* Hide personal tools (login, username, prefs) */
.page-Home #p-personal {
    display: none !important;
}

/* Hide site header strip spacing */
.page-Home .vector-header-container {
    display: none !important;
}

/* Hide sidebar completely */
.page-Home #mw-panel {
    display: none !important;
}

/* Full width content */
.page-Home #content {
    margin-left: 0 !important;
}

/* Remove page title "Home" */
.page-Home h1.firstHeading {
    display: none !important;
}

/* Remove footer links */
.page-Home #footer-places,
.page-Home #footer-icons {
    display: none !important;
}

/* Remove categories */
.page-Home #catlinks {
    display: none !important;
}