/* A Stylesheet for small changes outside of theme scss */

h1 {
  margin-top: 1.2rem;
}

h3 {
  margin: 1.4rem 0 1.2rem 0;
}

ul {
  margin-bottom: 30px;
}

ul li {
  margin-bottom: 1.1rem;
}

/* Let's make the book titles just a bit bigger */

.book-block h4 {
  font-size: 24px;
}


/* Nudging the press icon down just a bit */

.navbar-header {
  padding-top: 5px;
}

/* adding some feedback (via opacity) to main page book hover */

.book-row figure img {
  -webkit-transition: all 1s ease;
   -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
        transition: all 1s ease;
}

.book-row figure img:hover {
  opacity: .4;
}

/* award list formatting */

.book-awards {
  font-family: Lato, sans-serif;
  font-size: 80%;
}

.book-awards p:before, .bookpage-awards p:before {
   font-family: FontAwesome;
   content: "\f005";
   padding-right: 5px;
   color: rgb(130,191,231);
}

.bookpage-awards {
  padding-left: 20px;
  margin: 0 0 30px 0;
}

.book-row .col-xs-12 figure {
  margin-bottom: 40px;
}

.book-row figure, .book-block figure, .large-cover-image {
  max-width: 300px;
}