Skip to content

Display each verse on a new line by oosterhuisd

Screenshot of Display each verse on a new line

Details

Authoroosterhuisd

LicenseMIT

Categorywww.bible.com

Created

Updated

Size470 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

This tiny css plugin displays every Bible verse on bible.com on a new line, which can make reading and finding a verse easier.

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;  
        }
    }
}

Reviews

No reviews yet.