lighthouse score
This commit is contained in:
parent
c3e19308aa
commit
656f869f58
|
@ -7,7 +7,7 @@ body {
|
|||
}
|
||||
|
||||
img {
|
||||
max-height: 100%;
|
||||
max-height: 30vh;
|
||||
}
|
||||
|
||||
main {
|
||||
|
@ -44,8 +44,10 @@ main {
|
|||
|
||||
#playerContainer {
|
||||
grid-area: f;
|
||||
height: auto;
|
||||
max-height: 30vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#albumCover {
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
|
|
@ -15,22 +15,22 @@
|
|||
<h1>Scorch</h1>
|
||||
</div>
|
||||
<div id="artistListContainer" class="list">
|
||||
<select id="artistList" size="2" class="list" onchange="select_artist(this)">
|
||||
<select id="artistList" aria-label="Artist list" size="2" class="list" onchange="select_artist(this)">
|
||||
{% for artist in artists %}
|
||||
<option value="{{ artist }}">{{ artist }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<div id="albumListContainer" class="list">
|
||||
<select id="albumList" size="2" class="list" onchange="select_album(this)">
|
||||
<select id="albumList" aria-label="Artist list" size="2" class="list" onchange="select_album(this)">
|
||||
</select>
|
||||
</div>
|
||||
<div id="trackListContainer" class="list">
|
||||
<select id="trackList" size="2" class="list" onchange="select_track(this)">
|
||||
<select id="trackList" aria-label="Artist list" size="2" class="list" onchange="select_track(this)">
|
||||
</select>
|
||||
</div>
|
||||
<div id="playerContainer">
|
||||
<span id="albumCover"><img src=""></span>
|
||||
<span id="albumCover"><img alt="Album cover art" src=""></span>
|
||||
<span id="playerControls">
|
||||
<h4><span id="nowPlayingArtist"></span> - <span id="nowPlayingAlbum"></span></h4>
|
||||
<h3 id="nowPlayingTitle"></h3>
|
||||
|
|
Loading…
Reference in New Issue
Block a user