﻿/* Disable certain interactions on touch devices */
/* SOURCE: https://github.com/ftlabs/fastclick/blob/master/examples/input.html */
/* LICENSE: https://github.com/ftlabs/fastclick/blob/master/LICENSE */
body {
  -webkit-touch-callout: none ;
  -webkit-text-size-adjust: none ; -ms-text-size-adjust: none ;
  -webkit-user-select: none ; -moz-user-select: none ; -ms-user-select: none ; user-select: none ;
  -webkit-highlight: none ;
  -webkit-tap-highlight-color: rgba(0,0,0,0) ;
  -webkit-tap-highlight-color: transparent ;      /* For some Androids */
}

/* Recommended for Windows 8 Phone */
/* SOURCE: http://www.excellentwebworld.com/common-problems-solution-for-windows-phone-8-phonegap */
html {
  -ms-touch-action: pan-x ;
}

/* Recommended for Windows 8 Phone */
/* SOURCE: http://www.excellentwebworld.com/common-problems-solution-for-windows-phone-8-phonegap */
body {
  -ms-touch-action: pan-y ;
  -ms-content-zooming: none ;
}

/* allow copy-paste */
input, textarea  {
  -webkit-user-select: text ; -moz-user-select: text ; -ms-user-select: text ; user-select: text ;
}

body{
  padding:0px;
  margin:0px;
  background: #BF985C;
  overflow-x: hidden;
}
canvas {
  touch-action-delay: none;
  touch-action: none;
  -ms-touch-action: none;
}
#overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #BF985C;
  /*background-image:url('images/playlandscape.png');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
h3{margin-top:10px;margin-bottom:10px;}
p{margin-top:5px;margin-bottom:10px;}
#mygame{margin:auto;}
