/*
*** keyboard.css

keyboard format/design
source: https://www.sapphirepaw.org/twelve.html
I did not take anything else from that guy. I found his design after I created the basis of mine.
*/

.keyboard {
    width: 80%;
    min-width: 230px;
    margin: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	display: none;
}

.key {
	float: left;
    position: relative;
    height: 7em;
    width: 11%;
    padding: 0px;
    border: 1px solid black;
    background-color: #fff;
}

.key-black {
	float: left;
    position: absolute;
    width: 10%;
    height: 4em;
    z-index: 6;
    background-color: #000;
    border: 0;
	border-radius: 0 0 4px 4px;
}
