Skip to content

U-FRET での歌詞行数表示 by Szyln

Screenshot of U-FRET での歌詞行数表示

Details

AuthorSzyln

LicenseNo License

Categoryufret

Created

Updated

Size780 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Show Row number of U-FRET lyrics

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           U-FRET での歌詞行数表示
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Show row numbers before each row
@author         Me
==/UserStyle== */
@-moz-document url-prefix("https://www.ufret.jp/song.php") {
    /* ここにコードを挿入... */
    .musical-sheet {
        counter-reset: paragraph-counter;
        /* Resetting the counter */
    }
    .chord-row:before {
        margin-right: 12px;
        font-weight: 100;
        font-size: 12px;
        color: #6c757d;
        counter-increment: paragraph-counter;
        /* Incrementing the counter */
        content: counter(paragraph-counter);
        /* Displaying the incremented number before each <p> tag */
    }
}

Reviews

No reviews yet.