/* 
    Document   : bp-xp-img-fld
    Version    : 1.0.0
    Created on : May 19, 2014, 8:09:05 PM
    Author     : Alex Githatu
    Description: Styling for BuddyPress XProfile Image Field plugin
        
*/

/* BUTTON STYLING 
    http://red-team-design.com/just-another-awesome-css3-buttons/
*/
.rtd-button {        
    display: inline-block;
    white-space: nowrap;
    background-color: #ccc;
    background-image: linear-gradient(top, #eee, #ccc);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#cccccc');
    border: 1px solid #777;
    padding: 0 1.5em;
    margin: 0.5em;
    font: bold 0.9em/1.3em Arial, Helvetica;
    text-decoration: none;
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,.8);
    border-radius: .2em;
    box-shadow: 0 0 1px 1px rgba(255,255,255,.8) inset, 0 1px 0 rgba(0,0,0,.3);
}

.rtd-button:hover {
    background-color: #ddd;        
    background-image: linear-gradient(top, #fafafa, #ddd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fafafa', EndColorStr='#dddddd');        
}

.rtd-button:active {
    box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
    position: relative;
    top: 1px;
}

.rtd-button:focus {
    outline: 0;
    background: #fafafa;
}    

.rtd-button:before {
    background: #ccc;
    background: rgba(0,0,0,.1);
    float: left;        
    width: 1em;
    text-align: center;
    font-size: 1.0em;
    margin: 0 1em 0 -1.5em;
    padding: 0 .3em;
    box-shadow: 1px 0 0 rgba(0,0,0,.5), 2px 0 0 rgba(255,255,255,.5);
    border-radius: .15em 0 0 .15em;
    pointer-events: none;        
}

/* Hexadecimal entities for the icons */

.add-icon:before {
    content: "\271A";
}

.edit-icon:before {
    content: "\270E";        
}

.delete-icon:before {
    content: "\2718";        
}

.save-icon:before {
    content: "\2714";        
}

.email-icon:before {
    content: "\2709";        
}

.like-icon:before {
    content: "\2764";        
}

.next-icon:before {
    content: "\279C";
}

.star-icon:before {
    content: "\2605";
}

.spark-icon:before {
    content: "\2737";
}

.play-icon:before {
    content: "\25B6";
}

/* END BUTTON STYLING */

