diff --git a/light9/ascoltami/index.html b/light9/ascoltami/index.html --- a/light9/ascoltami/index.html +++ b/light9/ascoltami/index.html @@ -94,7 +94,10 @@ $.each(data.songs, function (i, song) { var button = $(""); // link is just for dragging, not clicking - var link = $("").text(song.label).attr("href", song.uri); + var link = $(""); + link.append($("").addClass("num").text(song.label.slice(0,2))); + link.append($("").text(song.label.slice(2))); + link.attr("href", song.uri); link.click(function () { button.click(); return false; }); button.append(link); button.data(song); diff --git a/static/style.css b/static/style.css --- a/static/style.css +++ b/static/style.css @@ -44,4 +44,9 @@ button a { } .stalled { opacity: .5; -} \ No newline at end of file +} +.num { +font-size: 27px; +color: rgb(233, 122, 122); +display: inline-block; + } \ No newline at end of file