/* For styling the rendered Markdown */
/* Originally taken from Joplin, but for use with other things too */

/* Heading Styles */
h1 {
    font-size: x-large;
  }
  
  h1, h2, h3 {
    letter-spacing: -1px;
  }
  
  h2 {
    color: #696969;
    font-size: 150%;
  }
  
  h3 {
    color: #4682B4;
    font-size: 125%;
  }
  
  
  /* Body Styles */
  
  body, #rendered-md {
    background-color: lightyellow;
    font-family: 'Avenir', 'Arial', sans-serif;
  }
  
  #joplin-container-content {
    background-color: lightyellow;
  }
  
  
  /* Link Styles */
  
   /* unvisited link */
  a:link {
    color: #696969;
  }
  
  /* visited link */
  a:visited {
    color: #696969;
  }
  
  /* mouse over link */
  a:hover {
    color: #000080;
  }
  
  /* selected link */
  a:active {
    color: #696969;
  } 