/*Stylesheet*/

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}


BODY, HTML {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    -webkit-tap-highlight-color: transparent;
    margin: 			0;
    padding: 			0;
    font-family: 		Arial, Verdana, sans-serif;
    font-size: 			12px;
    font-weight:		normal;
    color: 				#ccc;
    background-color:	#333333;
    width: 100%;
    height: 100%;
}
BODY {
    background-image: url("../img/gradient.png");
    background-size: 100% auto;
}
#canvasHolder {
    position: fixed;
    width: 100%;
    height: 100%;
}
.desktop-canvas {
    position: relative;
    -webkit-box-shadow: 0px 0px 35px 3px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 35px 3px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 35px 3px rgba(0,0,0,0.6);
}
#play_portrait {
    display: none;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white url('../img/play_portrait.png') no-repeat center center;
}