

/* navigation */

nav#blog-nav {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.7);
    float: left;
    margin: 15px;
    padding: 0px;
    width: 90%;
}

nav#blog-nav h2 {
    margin-left: 20px;
}


/* lists */

ul.latest-entries,
ul.featured-entries {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

ul.latest-entries li,
ul.featured-entries li {
    min-height: 120px;
    border-bottom: 1px dotted #999;
    padding: 10px 0;
    margin: 0
}

ul.latest-entries li:first-child,
ul.featured-entries li:first-child {
    border-top: 1px dotted #999;
}


/* entry summaries */

ul.latest-entries li a {
    text-transform: none;
    display: block;
    padding: 2%;
    margin: 0;
    color: #000;

    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

ul.latest-entries li a:hover,
ul.latest-entries li a:focus {
    background: #e7e7e7;
    text-decoration: none;
}

ul.latest-entries li a img {
    float: left;
    margin-right: 20px;
}

ul.latest-entries li a h3 {
    margin-top: 0;
}

/* detail of an entry */


