/**
 * Plugin Name: Taxonomy Indicators
 * Description: Use indicators to designate taxonomies a post belongs to. Includes key output.
 *
 * Author:      Once Coupled
 * Author URI:  https://www.oncecoupled.com
 *
 * Text Domain: oc_ti
 *
 * Version:     1.0.0
 *
 * License:     GPL-2.0+
 * License URI: http://www.opensource.org/licenses/gpl-license.php
 */

.taxonomy-indicators {
    overflow: hidden;
}

.taxonomy-indicators .taxonomy-indicator {
    display: block;
    float: left;
    margin-right: 8px;
}

.taxonomy-indicators .circle-abbr,
.taxonomy-indicators .full-name {
    -moz-transition:    all .2s ease-in-out;
    -ms-transition:     all .2s ease-in-out;
    -o-transition:      all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition:         all .2s ease-in-out;
}

.taxonomy-indicators .circle-abbr {
    display: block;
    float: left;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    background: #000;
    text-align: center;
    margin-bottom: 4px;
    border-radius: 100%;
}

.taxonomy-indicators .taxonomy-indicator:hover .circle-abbr {
    color: #fff;
    background: #555;
}

.taxonomy-indicators .full-name {
    line-height: 35px;
    margin-left: 4px;
    color: #000;
}

.taxonomy-indicators .taxonomy-indicator:hover .full-name {
    color: #555;
}