

@mixin prism() {
  position: relative;
  padding: 20px 20px 0 20px;
  font-size: 0;

  &:before {
    position: absolute;
    right: 8px;
    top: 5px;
    color: #acacac;
    font-size: 12px;
    font-weight: 900;
  }

  &:before {
    content: attr(data-language);
  }

  code {
    position: relative;
    display: block;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    text-align: left;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    font-size: 14px;
    padding: 0 0 20px;
    white-space: pre;
    overflow: auto;

    tab-size: 4;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;

  }
}
