/**
 * This file is part of BNS Site Data Widget
 * Last revised at version 0.3.1
 *
 * Copyright 2012-2015  Edward Caissie  (email : edward.caissie@gmail.com)
 *
 * BNS Site Data Widget is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2, as published
 * by the Free Software Foundation.
 *
 * You may NOT assume that you can use any other version of the GPL.
 *
 * BNS Site Data Widget is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to:
 *
 *      Free Software Foundation, Inc.
 *      51 Franklin St, Fifth Floor
 *      Boston, MA  02110-1301  USA
 *
 * @version 0.3.1
 * @date    May 14, 2013
 * Removed border and padding in widget areas
 */

/** Rounded border around widget and white background */
li.bns-site-data,
div.bns-site-data-shortcode {
    border: 1px solid #000000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    list-style-position: inside;
    padding: 10px 10px 10px 20px;
    background-color: #ffffff;
}

.widget.bns-site-data {
    border: none;
    padding: 0;
}

/** Font color */
ul.bns-site-data-list li {
    color: #000000;
}

/** Stripe color */
ul.bns-site-data-list li.stripe {
    background: #d3d3d3; /** lightgrey */
}

/** Make sure the shortcode output does not easily slip under anything */
.bns-site-data-shortcode {
    clear: both;
}