Tweak styling to make the lead sheet more compact.

This commit is contained in:
2025-06-01 07:28:42 -05:00
parent 73bdb97881
commit d7dd509138
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Package # Package
version = "0.5.5" version = "0.5.6"
author = "Jonathan Bernard" author = "Jonathan Bernard"
description = "Chord chart formatter compatible with Planning Center Online" description = "Chord chart formatter compatible with Planning Center Online"
license = "MIT" license = "MIT"

View File

@ -1,4 +1,4 @@
const PCO_CHORDS_VERSION* = "0.5.5" const PCO_CHORDS_VERSION* = "0.5.6"
const USAGE* = """Usage: const USAGE* = """Usage:
pco_chords [options] pco_chords [options]

View File

@ -22,6 +22,7 @@ const DEFAULT_STYLESHEET* = """
html { font-family: sans-serif; } html { font-family: sans-serif; }
.page-contents { line-height: 1.1; }
.one-column .page-contents { column-count: 1; } .one-column .page-contents { column-count: 1; }
.two-column .page-contents { column-count: 2; } .two-column .page-contents { column-count: 2; }
@ -36,7 +37,7 @@ section {
h3 { h3 {
font-size: 1.125rem; font-size: 1.125rem;
margin-bottom: 0.5em; margin-bottom: 0.125em;
text-decoration: underline; text-decoration: underline;
} }
@ -69,6 +70,7 @@ h3 .section-text {
.chord { .chord {
font-weight: 600; font-weight: 600;
margin-bottom: -0.25em;
margin-right: 0.5em; margin-right: 0.5em;
white-space: nowrap; white-space: nowrap;
} }