static: add symbols next to volume slider
This commit is contained in:
parent
9f568251cc
commit
468b35f791
|
@ -49,7 +49,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="volume-control">
|
<div id="volume-control">
|
||||||
|
<button class="borderless-button">🔉</button> <!-- 🔉 Speaker with sound wave -->
|
||||||
<input id="volume" name="volume" type="range" min="1" max="100" value="50">
|
<input id="volume" name="volume" type="range" min="1" max="100" value="50">
|
||||||
|
<button class="borderless-button">🔊</button> <!-- 🔊 Speaker with sound waves -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="track-info">
|
<div class="track-info">
|
||||||
|
|
|
@ -29,6 +29,12 @@ button {
|
||||||
border-bottom-color: #3A3A3A;
|
border-bottom-color: #3A3A3A;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.borderless-button {
|
||||||
|
border: none;
|
||||||
|
background-color: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
input[type=text] {
|
input[type=text] {
|
||||||
background-color: #28374a;
|
background-color: #28374a;
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -168,7 +174,6 @@ table tr:hover td {
|
||||||
}
|
}
|
||||||
|
|
||||||
#volume {
|
#volume {
|
||||||
margin-left: 10px;
|
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -192,6 +197,11 @@ table tr:hover td {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#volume-control {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
#top-logo {
|
#top-logo {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
Loading…
Reference in a new issue