chordsong
Version:
ChordSong is a simple text format for the notation of lyrics with guitar chords, and an application that renders them to portable HTML pages.
44 lines • 803 B
CSS
/*
Chord diagram
*/
svg {
background-color: white;
}
#chord-nut {
fill: rgb(94, 94, 94);
stroke: rgb(94, 94, 94);
stroke-width: 1;
}
#chord-frets {
fill: none;
stroke: rgb(94, 94, 94);
stroke-width: 1;
}
#chord-strings {
fill: none;
stroke: rgb(94, 94, 94);
stroke-width: 1;
}
path#chord-muted {
fill: none;
stroke: black;
stroke-width: 1;
}
.chord-barre {
fill: rgb(0, 0, 0);
stroke: rgb(0, 0, 0);
stroke-width: 1;
}
.chord-open {
fill: rgb(255, 255, 255);
stroke: rgb(0, 0, 0);
stroke-width: 1;
}
text.chord-name {
font-family: Roboto, Helvetica neue, Helvetica, Arial, sans-serif ;
font-size: 10px ;
alignment-baseline: before-edge;
}
text.chord-min-fret {
font: 10px Roboto, Helvetica neue, Helvetica, Arial, sans-serif ;
}