50 lines
781 B
CSS
50 lines
781 B
CSS
body {
|
|
margin: 0px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#container {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
#lochkarte {
|
|
position: absolute;
|
|
top: 0; bottom: 0; right: 0; left: 0;
|
|
}
|
|
|
|
.dot {
|
|
height: 35px;
|
|
width: 35px;
|
|
padding: 7px;
|
|
margin: 7px;
|
|
background-color: #bbb;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
|
|
div#fullscreen_button {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
width: 50px;
|
|
height: 50px;
|
|
cursor: pointer;
|
|
background-size: 100% 100%;
|
|
display: none;
|
|
}
|
|
|
|
.fullscreen-open {
|
|
background-image: url('media/fullscreen-open.png');
|
|
}
|
|
|
|
.fullscreen-close {
|
|
background-image: url('media/fullscreen-close.png');
|
|
}
|
|
|
|
/* removes tap blinking on ios devices */
|
|
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }
|