/*
 * blockquotes.css
 * ~~~~~~~~~~~~~~~
 *
 * Extension for basic.css that highlights blockquotes.
 *
 */

/* -- general body styles --------------------------------------------------- */

div.body blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 0.25em 10px;
  padding: 0.35em 60px;
  line-height: 1.45;
  position: relative;
  color: #383838;
}

div.body blockquote:before {
  color: #ccc;
  display: block;
  padding-left: 15px;
  content: "\201C";
  font-size: 4.5em;
  position: absolute;
  left: 0px;
  top: -5px;
}

