মিডিয়াউইকি:Common.css: সংশোধিত সংস্করণের মধ্যে পার্থক্য

সম্পাদনা সারাংশ নেই
সম্পাদনা সারাংশ নেই
২৫৭ নং লাইন: ২৫৭ নং লাইন:
     .mw-footer .mw-footer-content {
     .mw-footer .mw-footer-content {
         text-align: center;
         text-align: center;
    }
}
/* =========================
  Wikimedia-style Footer
  MediaWiki badge only (Vector 2022)
  ========================= */
/* Footer base */
.mw-footer {
    background: #ffffff;
    border-top: 1px solid #a2a9b1;
    padding: 1em 1.5em;
    font-size: 0.875em;
    color: #202122;
}
/* Layout: text left, badge right */
.mw-footer .mw-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
/* Footer text block */
.mw-footer .mw-footer-info {
    max-width: 75%;
}
/* Footer links inline (Wikipedia-style) */
.mw-footer ul {
    list-style: none;
    margin: 0.5em 0 0;
    padding: 0;
}
.mw-footer li {
    display: inline;
    margin-right: 0.8em;
}
.mw-footer li::after {
    content: "·";
    margin-left: 0.8em;
    color: #54595d;
}
.mw-footer li:last-child::after {
    content: "";
}
/* Footer links color */
.mw-footer a {
    color: #0645ad;
    text-decoration: none;
}
.mw-footer a:hover {
    text-decoration: underline;
}
/* REMOVE Wikimedia badge completely */
.mw-footer .mw-wikimedia-logo {
    display: none !important;
}
/* Keep ONLY Powered by MediaWiki badge */
.mw-footer .mw-footer-icons {
    display: flex;
    align-items: center;
}
.mw-footer .mw-poweredby {
    float: none;
    margin: 0;
}
/* Mobile behavior */
@media (max-width: 768px) {
    .mw-footer .mw-footer-content {
        flex-direction: column;
    }
    .mw-footer .mw-footer-icons {
        margin-top: 1em;
        align-self: flex-end;
     }
     }
}
}