MediaWiki:Common.css: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 1,258: Line 1,258:
Classes to hide elements in mobile
Classes to hide elements in mobile
/***********************************/
/***********************************/
@media only screen and (min-width: 1025px){
@media only screen and (min-width: 1024px){
.mobilehide {
.mobilehide {
color:#333300;
color:#666600;
}
}
}
}


@media only screen and (max-width: 1024px) and (min-width: 100px) {
@media only screen not (min-width: 1024px) {
.mobilehide {
.mobilehide {
display:none;
color:#006666;
}
}
}
}