/* styling for custom elements */
@import url("custom_elements.css");

/* build on Bootswatch theme  */
@import url("https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/simplex/bootstrap.min.css");

/* customization of Bootstrap navbar */

/* basic navbar settings */
.navbar {
  background-color: #8c1515;
}

.navbar a, a:link {
    font-weight: 600;
}

/* below are tweaks to standard elements */

/* constrain max-width to keep readable at wide width */
.container {
  max-width: 50em;
}

code {
  color: #7519a4;
}

body {
  color: #555555; /* increase contrast from default gray of Simplex */
}

/* use link color recommended by identity.stanford.edu */
body a , a:hover {
  color: #0066ff;
}

/* add separation between paragraphs, p + p for para followed by another para */
body p + p {
  margin-top: .5em;
}

body blockquote {
  border-color: #918873;
  color: #918873; /* stanford cooca */
  font-size: .85em;
}


h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.4em;
}
h3 {
  font-size: 1.2em;
}

h4 { /* used for FAQ stem */
  color:  #8c1515;
  font-size: 1em;
  font-weight: bold;
  line-height: inherit;
  margin-bottom: .3em;
  margin-top: 1.3em;
}

.qap-btn {
  background-color: gray;
  color: white;
  min-width: 80px;
}
