MediaWiki:Mobile.css: Difference between revisions

From Καλόξύς
No edit summary
No edit summary
Line 2: Line 2:
/* Show footer links that might be hidden by default */
/* Show footer links that might be hidden by default */


/*.minerva .content .footer-places {
/*
.minerva .content .footer-places {
     display: block;
     display: block;
}
}
Line 8: Line 9:
.minerva .content .footer-places li {
.minerva .content .footer-places li {
     display: list-item;
     display: list-item;
}*/
}
@media screen and (max-width: 768px) { /* Adjust the width as per MinervaNeue's breakpoint */
@media screen and (max-width: 768px) { // Adjust the width as per MinervaNeue's breakpoint
     .minerva .content .footer-places {
     .minerva .content .footer-places {
         display: block;
         display: block;
Line 18: Line 19:
     }
     }
}
}
*/

Revision as of 08:43, 7 December 2024

/* All CSS here will be loaded for users of the mobile site */
/* Show footer links that might be hidden by default */

/*
.minerva .content .footer-places {
    display: block;
}

.minerva .content .footer-places li {
    display: list-item;
}
@media screen and (max-width: 768px) { // Adjust the width as per MinervaNeue's breakpoint
    .minerva .content .footer-places {
        display: block;
    }

    .minerva .content .footer-places li {
        display: list-item;
    }
}
*/