/***************************
****************************

Fonts

****************************
***************************/

@import url(https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Slab:700);

/* Custom header fonts */

h1 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 700;
}

/* Custom book-wide fonts */

* {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

/* Accent color for headers */

h1, h2, h3, h4, h5, h6 {
  color: #03C03D;
}



/***************************
****************************

Sidebar colors

****************************
***************************/

/* Sidebar color */

ul.summary {
  background: #03C03D;;
}

/* Font-color to white (if sidebar is a dark color) */

.book .book-summary ul.summary li a, 
.book .book-summary ul.summary li span,
.book .book-summary ul.summary li a:hover, 
.book .book-summary ul.summary li.active>a {
    color: white;
}

/* Underline on active items */

.book .book-summary ul.summary li a:hover, 
.book .book-summary ul.summary li.active>a {
  text-decoration: underline;
}

/* If there's no page, make text still readable */

.book .book-summary ul.summary li span {
  opacity: 0.5;
}

/* Override table alternating background color */

.markdown-section table tr:nth-child(2n) {
  background: white;
}