/* activities/Word Sleuth/keyboard.css */

*:focus {outline: none;} /* prevents outline on clicked items */

#keyboard {width:328px; height:364px; background-color:palegreen;
	border:outset green 10px; position:absolute; left:590px; top:80px;
	border-radius:20px; padding: 10px; display:none;}
.key {background-color:ivory; width:30px; height:30px; padding:10px;
	margin:5px; display:inline-block;
	font-size:30px; text-align:center; border-radius:10px;
	box-shadow:5px 5px 3px grey; cursor:pointer;}
#space {width:230px; color:lightgrey;}
.no-select {
-webkit-user-select: none; /* Chrome all / Safari all */
-webkit-touch-callout: none; /* iOS Safari */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Common (limited support) */
}