25 lines
366 B
CSS
25 lines
366 B
CSS
|
|
/*
|
|
* ZOOM BUTTONS
|
|
*/
|
|
|
|
|
|
/* hide the rectangular box container
|
|
div.gmnoprint div {
|
|
visibility: hidden;
|
|
}
|
|
*/
|
|
/* shape buttons in circles
|
|
button.gm-control-active {
|
|
visibility: visible;
|
|
border-radius: 50% !important;
|
|
background-color: rgb(255, 255, 255) !important;
|
|
}
|
|
*/
|
|
/* gap between the buttons
|
|
button.gm-control-active ~ div {
|
|
height: 10px !important;
|
|
}
|
|
*/
|
|
|