/* Copyright (c) 2017 Nicholas Maltbie
 * MIT License
 *
 * bubblestyle.css - stylesheet file for bubble game
 */

#game-canvas
{
  touch-action: none;
  display: block;
  margin: 0 auto;
  background: #eee;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}
