/*------------------------------------*\
    STYLE THREE
\*------------------------------------*/
/**
 * Rectangle with no logo on coloured
 * background, only text
 */

/**
 * Update variables below to include media
 * queries (responsive version), control
 * padding and other variables.
 */

$include-media-queries:    true;
$icon-spacing:             0;
$wrapper-padding:          0;
$icon-size:                24px;
$base-font-size:           16px;
$animation-speed:          0.25s;

/**
 * Generated CSS must be combined with
 * ssbp-base in order to display correctly.
 * Allows for smaller file size when
 * combining multiple themes.
 */

@import '../modules/vars';
@import '../modules/mixins';

.ssbp--theme-11 {
    margin-left: -5px;
    margin-right: -5px;

	.ssbp-list li {
		margin: 0 !important;
	}

	.ssbp-text {
		@include font-styling;
        line-height: 1.2;
        font-size: 11px;
	}

	.ssbp-btn {
		display: block;
		padding: 0.6em 1em;
        margin: 5px;
        text-transform: uppercase;
		color: #fff;
        font-size: 11px;
		transition: background-color $animation-speed;
		border-bottom: 0;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
		&:before { display: none; }
		&:active { box-shadow: inset 0 0 0.5em rgba(0,0,0,0.33); }
		&:hover, &:focus, &:active, &:visited { //overide theme 2013/2012
			color: #fff;
		}
	}

	// This loop creates the specific social network styling for each .ssbp-btn using the $social-networks list in _vars.scss
	@each $social-network, $color in $social-networks {
		.ssbp-#{$social-network} {
			background-color: $color;
			&:hover, &:focus, &:active, + .ssbp-each-share {
				background-color: darken($color, 10%);
			}
		}
	}

    // Per network share count
    .ssbp-each-share {
        padding: 2px;
        font-size: 10px;
        margin-right: 5px;
        margin-left: 5px;
        text-align: center;
        color: #FFF;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

	.ssbp-toggle-switch {
		@extend %ssbp-toggle-switch--dark;
	}
	&.ssbp--centred {
		@extend %ssbp--centred-full;
	}
}
