

.marked {
   position:relative;
}

.marked,
.marked pre {
  max-width: 672px;
}

.marked pre {
   background-color:$shadedBackgroundColor;
   overflow:auto;
   padding:1em;
   line-height: 1.2em;
   margin:0em 0 2em 0;
}

code {
  font-family: $themeMonoFont, monospace;
  color: #3d3935;
  font-size:80%;

  .comment {
     color: $highlight;
  }
  .string {
     color: #d8615a;
  }
  .keyword {
     color: #50c3db;
  }
}

/* inline code examples */
:not(pre) > code {
  display:inline-block;
  background-color: $shadedBackgroundColor;
  border-radius: 2px;
  padding: 2px 5px;
}

.marked ul, ol {
  margin:0 2em 2em 2em;
}

.marked ul {
   list-style: none;
}

/* use bullets from the font and otherwise make them look
   like LaTeX.  */
.marked li {
   margin:0.5em 0;
   padding-left:0;
   line-height: 1.5; 
}   
   
.marked ul li:before {
    content: "•";
    padding-right: 0;
    position:absolute;
    left:1em;
}

@media only screen and (max-width: $minSizeForTwoCol) {
  .marked,
  .marked pre {
    max-width: 100%;
  }
}
