/*
Plugin Name: Pinterest Pin It Button For Images
Plugin URI: http://www.canha.net
Description: Displays a Pin It button directly over your images
Author: Canha
Author URI: http://www.canha.net
Version: 1.0
*/
/*	-----------
		BASE STYLES
		-----------
*/

/* If you feel comfortable editing here, go ahead. I promise to add a function soon to easily change the button */

.xc_pinterest {
	position: relative;
	display: block;
}
.xc_pinterest .xc_pin {
	width: 136px; height: 48px;
	background-image: url('pinit.png'); background-repeat: no-repeat; /* This is the buttons image. Image can be found in the plugin folder */
	position: absolute;
	top: 15px;
	left:0;
	opacity: 0;
	cursor: pointer;
	display: none; /*overwritten by js*/
}
.tumbltron{
	width: 136px; height: 48px;
	background-image: url('tumbl.png'); background-repeat: no-repeat; /* This is the buttons image. Image can be found in the plugin folder */
	position: absolute;
	top: 78px;
	left:0;
	opacity: 0;
	cursor: pointer;
	display: none;
}
.xc_pinterest img.left + .xc_pin {
	margin-left: 0;
}

/*	-----------------
		INTERACTIONS / FX
		-----------------
*/

.xc_pinterest .xc_pin,
.xc_pinterest img,
.tumbltron {
	-webkit-transition:opacity .2s ease-out; -moz-transition:opacity .2s ease-out; transition:opacity .2s ease-out;
}
.xc_pinterest:hover .xc_pin,
.xc_pinterest_hover,
.xc_pinterest:hover .tumbltron {
	opacity: .7;
}
.xc_pinterest .xc_pin:hover,
.xc_pinterest.tumbl_hover .tumbltron {
	opacity: 1;
}
