File size: 573 Bytes
44a2550 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | .notation-canvas-wrapper {
background: white;
border: 1px solid #ccc;
border-radius: 8px;
padding: 1rem;
margin: 1rem 0;
}
.notation-canvas {
width: 100%;
height: auto;
overflow-x: auto;
}
.vf-stavenote {
cursor: pointer;
transition: all 0.1s ease;
}
.vf-stavenote:hover {
opacity: 0.7;
}
.vf-stavenote.selected {
fill: #007bff;
}
.vf-stavenote.playing {
fill: #28a745 !important;
opacity: 1 !important;
}
.vf-stavenote.playing .vf-notehead {
fill: #28a745 !important;
}
.vf-stavenote.playing .vf-stem {
stroke: #28a745 !important;
}
|