Is it possible to adjust the font size of a Google Maps mapType controller using HTML or CSS? I've managed to change the size of the controller, but struggling with the font size.
https://i.sstatic.net/1n9oU.png
HTML:
<div #map id="map" style="height:250px;"></div>
CSS:
#map{
height: 100%;
width: 100%;
font-size: 15px;
}
.gm-style-mtc > div:first-child {
width: 60px;
height: 20px;
font-size: 15px;
}
.gm-style-mtc > div > div {
width: 100%;
height: 100%;
font-size: 15px;
}