MediaWiki:Common.css: Difference between revisions

From Grooper Wiki
No edit summary
No edit summary
Line 7: Line 7:


@media only screen and (max-width: 1200px) {
@media only screen and (max-width: 1200px) {
/*
td {
    display: block !important;
    font-size: xx-large !important;
}
tr {
    width: 100% !important;
}
* /
.tabs-container td {
.tabs-container td {
     display: block;
     display: block;

Revision as of 11:25, 13 August 2020

/* CSS placed here will be applied to all skins */

img {
    max-width:100%;
    height:auto;
}

@media only screen and (max-width: 1200px) {
.tabs-container td {
    display: block;
    width: 95% !important;
    padding: 5px !important;
}

.tabs-container tr {
    width: 100%;
}


}