This tiny css plugin displays every Bible verse on bible.com on a new line, which can make reading and finding a verse easier.
Display each verse on a new line by oosterhuisd
Details
Authoroosterhuisd
LicenseMIT
Categorywww.bible.com
Created
Updated
Size470 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name EachVerseNewLine - Dec 2023
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Start every verse on a new line
@author Daniel Oosterhuis
==/UserStyle== */
@-moz-document domain("www.bible.com") {
div[data-usfm] > div {
text-indent: 0;
}
span[data-usfm] {
display: inline-block;
text-indent: 0;
> span {
text-indent: 0;
}
}
}