/** * CSS styles that enable the full screenswitcher to put a map into ful screen mode */ /* Make it fill the whole viewport. Set a nice background color so that parts of the viewport that are off the map aren't so ugly (Large screen users will appreciate this). */ .full-screen-map { height: 100% !important; width: 100% !important; position: absolute !important; left: 0 !important; top: 0 !important; background-color: #9ab !important; margin-top: 0 !important; /* IE needs this */ } /* Full screen button */ #full-screen-container { border: 1px solid black; position: relative; text-align: center; width: 6em; cursor: pointer; font-family: Arial,sans-serif; color: black; } #full-screen-button { border-style: solid; border-color: white rgb(176, 176, 176) rgb(176, 176, 176) white; border-width: 1px; background-color: white; font-size: 12px; color: black; text-decoration: none; display: block; } #full-screen-button.on { border-color: rgb(52, 86, 132) rgb(108, 157, 223) rgb(108, 157, 223) rgb(52, 86, 132); font-weight: bold; }