Jump to content

MediaWiki:Common.css

From Farmpedia – Agricultural Encyclopedia for Farmers
Revision as of 09:03, 11 April 2026 by Mamta (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* ===== VECTOR 2022 FULL WIDTH ===== */
.skin-vector-2022 .mw-page-container {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

.skin-vector-2022 .vector-page-toolbar,
.skin-vector-2022 .mw-header {
    max-width: none !important;
}

.skin-vector-2022 #mw-content-container {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

.skin-vector-2022 .mw-content-container {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

.mw-parser-output {
    max-width: none !important;
    width: 100% !important;
}

/* ===== PINNED SIDEBAR ===== */
@media (min-width: 1024px) {
    .skin-vector-2022 .vector-sidebar-container {
        position: sticky !important;
        top: 60px !important;
        height: calc(100vh - 60px) !important;
        overflow-y: auto !important;
    }

    /* Force sidebar to always show pinned */
    .skin-vector-2022 .mw-sidebar--pinned {
        display: block !important;
    }
}

/* ===== CARD LAYOUT ===== */
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-2 {
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    padding: 20px 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.column {
    flex: 1 1 280px !important;
    min-width: 260px !important;
}

/* 3 columns on desktop */
@media (min-width: 1024px) {
    .column {
        flex: 0 1 calc(33.333% - 16px) !important;
        max-width: calc(33.333% - 16px) !important;
    }
}

/* 2 columns on tablet */
@media (min-width: 600px) and (max-width: 1023px) {
    .column {
        flex: 0 1 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
}

/* 1 column on mobile */
@media (max-width: 599px) {
    .row {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 16px 12px !important;
    }
    .column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 1 100% !important;
    }
}

.fakeimg {
    overflow: hidden;
    height: 220px;
    background: #f0f0f0;
}

.fakeimg img,
.fakeimg a img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 599px) {
    .fakeimg,
    .fakeimg img,
    .fakeimg a img {
        height: 160px !important;
    }
}

.cha-cont {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.cha-title {
    font-size: 11px !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    display: block !important;
    margin: 0 0 6px 0 !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}

.cha-title-2 {
    font-size: 11px !important;
    color: #888 !important;
}

.cha-cont h2 {
    font-size: 16px !important;
    margin: 0 0 12px 0 !important;
    color: #1a1a2e !important;
    line-height: 1.4 !important;
    border: none !important;
    flex-grow: 1 !important;
}

/* ===== BUTTONS ===== */
.btn-grp {
    margin-top: auto !important;
    padding-top: 8px !important;
}

.btn-grp-2 {
    margin-top: auto !important;
}

.btn {
    display: inline-block !important;
    padding: 8px 18px !important;
    border-radius: 5px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}

.btn-2 {
    background-color: #2e7d32 !important;
    color: #fff !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 18px !important;
}

.btn-2 a,
.btn-2 a:visited {
    color: #fff !important;
    text-decoration: none !important;
}

.btn-2:hover {
    background-color: #1b5e20 !important;
}

.ch-btn {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ===== HERO IMAGE ===== */
.hero-img {
    width: 100% !important;
    max-height: 420px !important;
    overflow: hidden !important;
}

.hero-img img,
.hero-img a img {
    width: 100% !important;
    max-height: 420px !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 599px) {
    .hero-img,
    .hero-img img,
    .hero-img a img {
        max-height: 200px !important;
    }
}

/* ===== BANNER ===== */
.banner-cont {
    background: #fff !important;
    padding: 35px 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.banner-cont p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #333 !important;
    margin: 0 !important;
}

@media (max-width: 599px) {
    .banner-cont {
        padding: 20px 16px !important;
    }
    .banner-cont p {
        font-size: 14px !important;
    }
}

/* ===== PAGE TITLE ===== */
.title {
    width: 100% !important;
}

.title h1 {
    font-size: 32px !important;
    margin: 20px 25px !important;
    color: #1a1a2e !important;
    border-bottom: 2px solid #2e7d32 !important;
    padding-bottom: 12px !important;
}

@media (max-width: 599px) {
    .title h1 {
        font-size: 24px !important;
        margin: 16px 12px !important;
        padding-bottom: 10px !important;
    }
}

/* ===== SECTION TITLES ===== */
.ch-title {
    font-size: 22px !important;
    color: #1a1a2e !important;
    margin: 24px 0 8px 0 !important;
    padding: 0 25px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #2e7d32 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 599px) {
    .ch-title {
        font-size: 18px !important;
        margin: 16px 0 8px 0 !important;
        padding: 0 12px !important;
    }
}

/* ===== FORCE WIDE MODE & HIDE APPEARANCE PANEL ===== */
.skin-vector-2022 .vector-settings,
.skin-vector-2022 .mw-portlet-appearance {
    display: none !important;
}

/* ===== MOBILE-SPECIFIC OVERRIDES ===== */
@media (max-width: 599px) {
    .card {
        border-radius: 8px !important;
    }

    .card:hover {
        transform: translateY(-2px) !important;
    }

    .cha-cont h2 {
        font-size: 15px !important;
    }

    .btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }
}

/* ===== HIDE WIKI DEFAULT STYLING ===== */
.mw-editsection {
    display: none !important;
}

.mw-editsection-bracket {
    display: none !important;
}
/* Google Translate in sidebar */
#google-translate-sidebar {
    padding: 8px 5px !important;
}

#google_translate_element select {
    width: 100% !important;
    padding: 4px !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    font-size: 12px !important;
    background: #fff !important;
}

.goog-te-gadget-simple {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
}

/* Hide Google Translate top banner */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}