@import 'reset.css';
@import 'clearfix.css';


/*Prevent copy paste for all elements except text fields */
    *  { -webkit-user-select:none; -webkit-tap-highlight-color:rgba(255, 255, 255, 0); }
    input, textarea  { -webkit-user-select:text; }


body {
  background-color: #333;
}

#wrapper {
    /*width: 100%;*/
    min-height: 420px;
}

#canvas-holder {
    position: relative;
}

#canvas-holder {
    width: 420px;
    height: 420px;
    /*border: solid 1px #000;*/

    /*margin: 0 auto;*/
}

#tutorial {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#button-holder {
    display: block;
    position: relative;
    width: 500px;
    height: 300px;
    background-color: #333;
    color: #fff;
}

#button-holder #a,
#button-holder #b {
    position: absolute;
    height: 200px;
    width: 300px;
    background-color: #fff;
    color: #000;
    bottom: 0;
}

#button-holder #a {
    right: 0;
}

#button-holder #b {
    left: 0;
}

#current-color {
    width: 20px;
    height: 20px;
    background-color: #000;
    margin: 5px;
    border: solid 1px #000;
    font-family: Arial;
    font-weight: bold;
}

#colors {
    width: 418px;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    border: solid 1px #000;
    background-color: #ccc;
    display: none;
    z-index: 99999;
    font-size: 20px;
}

#colors-holder {
    width: 416px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border: solid 1px #000;
    margin-top: 5px;
}

#colors.open {
    display: block;
}

#colors .color {
    width: 50px;
    height: 60px;
    margin: 5px 10px;
    line-height: 20px;
    text-align: center;
    border: solid 1px #000;
    display: inline-block;
}

button {
    width: 80px;
    margin: 5px;
    height: 50px;
    font-size: 14px;
}

#loading {
    position: absolute;
    width: 66px;
    height: 66px;
    margin: 0 auto;
    top: 177px;
    left: 177px;
    z-index: 99999999;
    display: none;
}

#loading.open {
    display: block;
}