
.noteDisplay{
    display: none;
    position: absolute;
    top:30%;
    left:45%;
    text-align: center;
    vertical-align: middle;
    font-size: 4em;
    color: #AAAAAA;
    background-color: transparent;
    z-index: 9;   
}

.keyboard {
    position: absolute;
    bottom: 0px;
    left:25%;
    padding:1%;
    display: none;
}

.keys {
    position: relative;
    top: 0px;
    left:0px;
    height:100%;
    width: 100%;
}

.note {
    width:9%;
    position: absolute;
}

.black {
    top:0px;
    height: 70%;
    background-color: #474747;
    color: white;
    width: 6%;
    border-radius: 0px 0px 5px 5px;
    z-index: 7;

    background: #595959;
    background: -moz-linear-gradient(left, #595959 0%, #000000 16%, #000000 51%, #111111 69%, #1c1c1c 89%, #787878 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #595959), color-stop(16%, #000000), color-stop(51%, #000000), color-stop(69%, #111111), color-stop(89%, #1c1c1c), color-stop(100%, #787878));
    background: -webkit-linear-gradient(left, #595959 0%, #000000 16%, #000000 51%, #111111 69%, #1c1c1c 89%, #787878 100%);
    background: -o-linear-gradient(left, #595959 0%, #000000 16%, #000000 51%, #111111 69%, #1c1c1c 89%, #787878 100%);
    background: -ms-linear-gradient(left, #595959 0%, #000000 16%, #000000 51%, #111111 69%, #1c1c1c 89%, #787878 100%);
    background: linear-gradient(to right, #595959 0%, #000000 16%, #000000 51%, #111111 69%, #1c1c1c 89%, #787878 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#595959', endColorstr='#787878', GradientType=1 );
} 

.white {
    height:100%;
    bottom: 0px;
    color: #474747;
    padding-bottom: 1%;
    margin: 0.2%;
    border-radius: 0px 0px 5px 5px;
    z-index: 6;

    background: #ffebd2;/* Old Browsers */
    background: -moz-linear-gradient(left, #ffebd2 0%, #fdf2e3 21%, #fdf2e3 71%, #ffebd2 100%); /* FF3.6+ */
    background: -webkit-gradient(left top, right top, color-stop(0%, #ffebd2), color-stop(21%, #fdf2e3), color-stop(71%, #fdf2e3), color-stop(100%, #ffebd2));/* Chrome, Safari4+ */
    background: -webkit-linear-gradient(left, #ffebd2 0%, #fdf2e3 21%, #fdf2e3 71%, #ffebd2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #ffebd2 0%, #fdf2e3 21%, #fdf2e3 71%, #ffebd2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #ffebd2 0%, #fdf2e3 21%, #fdf2e3 71%, #ffebd2 100%); /* IE 10+ */
    background: linear-gradient(to right, #ffebd2 0%, #fdf2e3 21%, #fdf2e3 71%, #ffebd2 100%);/* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffebd2', endColorstr='#ffebd2', GradientType=1 );/* IE6-9 */
}

.pressed {
    background: green;
}

@media screen and (max-width :1028px) {
    .keyboard {
        left:15%;
    }
}

/* Handy */
@media screen and (max-width :720px) {
    .keyboard {
        left:0%;
        width:100%;
    }
}