/*
LEAVE-A-NOTE
by Joseph Moore, http://josephrmoore.com
*/

/* Notes */

li.post-its {
	display: block; 
	height: auto; 
	width: 150px; 
	overflow: visible; 
	background:#f9f9f9; 
	border: 0;
	padding: 8px; 
	font-size: 12px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #333;
	box-shadow: 2px 2px 9px rgba(0,0,0,0.3);
	-moz-box-shadow: 2px 2px 9px rgba(0,0,0,0.3);
	-webkit-box-shadow: 2px 2px 9px rgba(0,0,0,0.3);
	-o-box-shadow: 2px 2px 9px rgba(0,0,0,0.3);
	cursor: move;
    z-index: 1000;
	text-align: left;
	line-height: 1.2;
	}
	
li.post-its:nth-child(2n+1) {
	transform: rotate(3deg);
	-webkit-transform: rotate(3deg);
	-moz-transform:rotate(3deg);
	}

li.post-its:nth-child(2n+0) {
	transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	}
	
li.post-its:nth-child(2n+1):hover {
	transform: scale(1.15) rotate(0deg);
	-webkit-transform: scale(1.15) rotate(0deg);
	-moz-transform: scale(1.15) rotate(0deg);
	}

li.post-its:nth-child(2n+0):hover {
	transform: scale(1.15) rotate(0deg);
	-webkit-transform: scale(1.15) rotate(0deg);
	-moz-transform: scale(1.15) rotate(0deg);
	}	
	
/* Show Hide Button */	

button#leaveanote_showhide_button {
	position: fixed;
	top: 5px;
	right: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #000000;
	color: white;
	padding: 5px 8px;
	border: none;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	opacity: 0.5;
	}
	
button#leaveanote_showhide_button:hover {
	opacity: 1;
	cursor: pointer;
	background-color:#666;
	box-shadow:inset 0 -10px 15px #000000;
	-webkit-box-shadow:inset 0 -10px 15px #000000;
	-moz-box-shadow:inset 0 -10px 15px #000000;
	}
