
/* Copied from bookdown text */
/* https://raw.githubusercontent.com/rstudio/bookdown/master/inst/examples/css/style.css */

/* Can do custom css here */
#header .title {
  font-size:2.25em;
  margin-bottom:.5em;
}

#header .author, #header .date {
  font-weight:500;
  margin-top: 0;
  margin-bottom: 0;
}

#header .date:before {
  font-weight: 500;
  font-style: italic;
  content: "Last updated: ";
}

.book .book-summary {
  background: #aed581; /* theme the sidebar to distinguish */
}

.book .book-summary ul.summary li a:hover, .book .book-summary ul.summary li.active>a {
  color: #000;
  font-weight: 500;
}

.book .book-summary Ul.summary li span {
    opacity: .45;
}

.book .book-summary ul.summary li a.title {
  padding-top:15px;
  font-size: 15px; /* match height styling? */
}

/* appendix number fix?*/
.header-section-number {
    padding-right: .5em;
}

.page-inner li {
  margin-bottom: .85em;
}

.page-inner li ul {
  margin-top: .85em !important;
}

.footnotes ol li {
  margin-bottom: .5em;
}

.page-inner .list-condensed li,
.page-inner .list-condensed ol li,
.page-inner .list-condensed ul li  {
    margin-bottom: 0 !important;
}

.page-inner .list-condensed ol,
.page-inner .list-condensed ul {
    margin-top: 0 !important;
}

.footnotes ol li p {
  margin-bottom: .5em !important;
}


/* Common? */
p.caption {
  font-size: 90% !important;
  color: #777;
  margin-top: 10px;
}
p code {
  white-space: inherit;
}
pre {
  word-break: normal;
  word-wrap: normal;
  line-height: 1.42em;
}
pre code {
  white-space: inherit;
}

.clear {
  clear:both
}

small { /* css fix */
    font-size: 80% !important;
}

/* columns */

.row {
    box-sizing: border-box;
    display: flex;
}

.column {
    box-sizing: border-box;
    flex-grow: 1;
    margin: 0 5px;
}

.column.col2 {
    flex-basis: 50%;
}
