chordlib 0.7.0

Work with chord-and-lyrics songs: parse, transform, and render them to multiple formats
Documentation
body {
  margin: 0;
  padding: 0;
  font-family: Verdana, sans-serif;
}

.page {
  width: 794px;
  height: 1123px;
  transform-origin: top left;
  overflow: hidden;
  transform: scale({{ scale }});
}

.header {
  height: 40px;
  width: 674px;
  margin: 60px 60px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 26px;
  margin: 0;
}

.subtitle {
  font-size: 13px;
  margin: 0;
  font-weight: normal;
}

.meta {
  font-size: 13px;
  text-align: right;
}

.footer {
  height: 40px;
  width: 674px;
  margin: 0 60px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  margin: 0;
  font-weight: normal;
}

.columns {
  column-count: 2;
  column-gap: 30px;
  {% if has_footer %}
  margin: 0 60px 0;
  height: 933px;
  {% else %}
  margin: 0 60px 30px;
  height: 973px;
  {% endif %}
  width: 674px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 17px;
}

.keyword, .chord {
  font-weight: bold;
  white-space: pre;
}

.keyword {
  text-transform: uppercase;
}

.text {
  white-space: pre-wrap;
}

.part {
  display: inline-block;
  position: relative;
  white-space: normal;
  min-height: 1px;
}

.part-has-chord {
  padding-top: 1.4em;
}

.part .chord {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}

.word {
  white-space: nowrap;
}

.comment {
  font-style: italic;
}

p {
  margin: 0 0 30px 0;
  padding: 0;
  break-inside: avoid;
  page-break-inside: avoid;

}

span {
  font-kerning: none;
  letter-spacing: 0;
  word-spacing: normal;
}

sup {
  font-size: 50%;
}

.bars {
  width: 100%;
  display: flex;
  font-weight: bold;
}

.bars .chord {
  flex: 1;
}

.bars .bar {
  min-width: 15px;
  text-align: center;
}