Module:Coordinates/sandbox/styles.css
Appearance
/* Geographical coordinates defaults. The classes "geo", "longitude", and
"latitude" are used by the [[Geo microformat]]. */
.geo-default,
.geo-dms,
.geo-dec {
display: inline;
}
.geo-nondefault,
.geo-multi-punct {
display: none;
}
.longitude,
.latitude {
white-space: nowrap;
}
.coord-geohack {
display:none;
}
/** Kartographer does not work properly if using desktop site on mobile -
either crashes or does not respond to touch events properly.
So display geohack link in that case.
**/
@media screen and (pointer: coarse) and (max-width: 719px) {
body:not(.skin-minerva) .coord-kartographer {
display: none;
}
body:not(.skin-minerva) .coord-geohack {
display: inline;
}
}