123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- * {
- padding: 0;
- margin: 0;
- border : 0px solid;
- }
- body, html {
- -webkit-touch-callout: none;
- -webkit-text-size-adjust: none;
- -webkit-user-select: none;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- background-color : #000;
- color : #ffffff;
- width:100%;
- height:100%;
- }
- canvas {
- image-rendering: optimizeSpeed;
- -webkit-interpolation-mode: nearest-neighbor;
- cursor: pointer;
- }
- .deviceLock {
- position: absolute;
- display: none;
- width: 100%;
- height: 100%;
- }
- /*
- when in landscape : show picture
- */
- @media screen and (orientation:landscape) {
- .deviceLock {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 100% !important;
- height: 100% !important;
- background-color: #ffffff;
- display: none;
- }
- }
- /*
- when in portrait : hide picture
- */
- @media screen and (orientation:portrait) {
- .deviceLock {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 100% !important;
- height: 100% !important;
- background-color: #ffffff;
- display: none !important;
- }
- }
- /*
- wrong orientation image
- */
- .rotateDevice {
- width:100%;
- height:100%;
- background: url('../media/rotatedevice.png') no-repeat 50% 50%;
- }
- #socialButtons {
- position:fixed;
- top:10%;
- left:0;
- }
- #ad {
- position: absolute;
- left:0px;
- top:0px;
- z-index:1000;
-
- background-color: #000;
- text-align:center;
- color: #888;
- }
- #ad .info {
- margin:10px auto 0px auto;
- font-size:15px;
- font-weight:bold;
- }
- #ad .skip {
- padding: 7px 10px;
- color: #CCC;
- border: 2px solid #333;
- background-color: #191919;
- text-align: center;
- width: 120px;
- border-radius: 5px;
- opacity: 0.8;
- cursor:pointer;
- }
|