/*
wordpress popular posts plugin stylesheet
developed by hector cabrera
cabrerahector.com | @cabrerahector

use the following classes to style your popular posts list as you like.
*/

/* styles the "sorry, no data so far" message */
.wpp-no-data {
}

/* ul - popular posts container styles */
.wpp-list {
}

    /* li - post container styles */
    .wpp-list li {
        overflow: hidden;
        float: none;
        clear: both;
        margin-bottom: 1rem;
    }

    .wpp-list li:last-of-type {
        margin-bottom: 0;
    }

    /* styles for the popular post in view */
    .wpp-list li.current {
    }

        /* thumbnail styles */
        .wpp-thumbnail {
            display: inline;
            float: left;
            margin: 0 1rem 0 0;
            border: none;
        }

        /* title styles */
        .wpp-post-title {
        }

        /* excerpt styles */
        .wpp-excerpt {
        }

        /* stats tag styles */
        .wpp-meta, .post-stats {
            display: block;
            font-size: 0.8em;
        }

        .wpp-meta:empty, .post-stats:empty {
            display: none;
        }

            /* comments count styles */
            .wpp-comments {
            }

            /* views count styles */
            .wpp-views {
            }

            /* author styles */
            .wpp-author {
            }

            /* post date styles */
            .wpp-date {
            }

            /* post category styles */
            .wpp-category {
            }

        /* wp-postratings styles */
        .wpp-rating {
        }