Makes lyrics only view of music in the church library very large print.
Large Print Lyrics by robartsd
Details
Authorrobartsd
Licensehttps://creativecommons.org/licenses/by-sa/4.0/deed.en
Categorywww.churchofjesuschrist.org
Created
Updated
Code size5.9 kB
Code checksum5e972d82
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Works best in chromium based browsers.
Source code
/* ==UserStyle==
@name Large Print Lyrics
@version 20250302
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://www.churchofjesuschrist.org/media/music/songs/") {
:root {
--lyricsFontSize: 40pt;
--titleFontSize: 40pt;
--verseNumberFontSize: 40pt;
--pageMargin: .75in;
orphans: 3;
widows: 3;
}
[class*="LyricVerse__PadBox"]:has(p+p) {
/*
some songs have notes in the lyrics section that show up as single line verses
:has(p+p) prevents this rule from matching these non-lyric elements
*/
padding: 0;
margin: 0;
padding-block-end: calc(var(--lyricsFontSize) * .4);
font-size: var(--lyricsFontSize);
font-weight: bold;
line-height: 1.1;
text-wrap: balance;
& * {
font-size: inherit;
font-weight: inherit;
line-height: inherit;
display: inline;
&::after {
content: " ";
}
}
}
[class*="LyricVerse__VerseNumber"] {
font-size: var(--verseNumberFontSize);
font-weight: bold;
line-height: 1.1;
width: 1.1em;
}
@media print {
@page {
margin: .25in;
size: portrait;
counter-increment: page;
}
* {
box-sizing: border-box;
}
p,
[class*="Songs__PageWrapper"],
[class*="Songs__PageWrapper"] > *,
[class*="BreadCrumbs__BreadCrumbsStyleWrapper"],
[class*="Songs__PageSplitWrapper"],
[class*="Songs__PageSplitWrapper"] > *,
[class*="Songs__PadBox"] {
width: auto;
margin: 0;
padding: 0;
max-width: unset;
}
[class*="Songs__PageWrapper"] {
padding: 0 .5in;
}
[class*="Songs__PageSplitWrapper"],
[class*="SidePanel__LeftAndRightMargins"] {
display: block;
max-width: 100%;
}
[class*="Songs__StyledChevrons"],
[class*="Songs__StyledButtonBar"],
[class*="Songs__StyledAudioPlayer"],
[class*="Songs__StyledVideo"],
[class*="LyricVerse__VerseContainer"]:has(a[href*="https://www.churchofjesuschrist.org/study/manual/"]) {
display: none;
}
[class*="LyricsView__PrintViewTitle"] {
font-size: var(--titleFontSize);
font-weight: bold;
text-decoration: underline;
line-height: 1;
text-wrap: balance;
padding-left: calc(var(--titleFontSize) * 1);
}
[class*="LyricsView__PrintViewTitle"]:first-letter {
margin-left: calc(var(--titleFontSize) * -1);
}
[class*="BreadCrumbs__BreadCrumbsStyleWrapper"] {
& li {
display: none;
}
& li:last-child {
/* title */
display: block;
width: 100%;
margin: 0;
padding: 0;
& * {
/* title */
font-size: var(--titleFontSize);
font-weight: bold;
text-decoration: underline;
line-height: 1;
padding-block-end: calc(var(--titleFontSize) * .5);
}
& *::after {
display: none;
}
}
}
[class*="Songs__Padding"] {
padding-top: 0;
}
[class*="SidePanel__LeftAndRightMargins"] {
page-break-inside: avoid;
column-count: 3;
column-gap: 1.5em;
& > *:nth-child(-n + 12) {
display: none;
font-size: 16px;
font-weight: normal;
margin: 0;
position: fixed;
padding: 0 .25in;
height: .5in;
transform: rotate(-90deg);
align-items: center;
justify-content: center;
text-align: center;
text-wrap: balance;
}
& > [class*="SidePanel__SidePanelTitle"] {
/* song title in margin */
display: flex;
width: 4.25in;
right: 0;
bottom: 50%;
transform-origin: bottom right;
}
& > *:nth-child(10) {
/* collection in margin */
font-style: italic;
display: flex;
width: 4.25in;
left: 100%;
bottom: 50%;
transform-origin: bottom left;
}
& > *:nth-child(12) {
/* song number in margin */
display: flex;
justify-content: flex-end;
width: 1in;
padding-right: 0;
right: 0;
bottom: 100%;
transform-origin: bottom right;
font-size: 36px;
font-weight: bold;
}
& > *:nth-child(n + 13) {
/* additional sidebar info */
display: none;
}
& * {
-webkit-column-break-before: avoid;
-webkit-column-break-inside: avoid;
}
& [class*="SidePanel__SidePanelSmallTitle"] {
-webkit-column-break-before: auto;
margin-block-start: .5em;
margin-block-end: 0;
}
}
}
}