-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d01d14
commit ace9483
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,11 @@ | |
width: 60px; | ||
height: 60px; | ||
} | ||
table.Tout, .Tout th, .Tout td { | ||
padding: 10px; | ||
border-collapse: collapse; | ||
border: 2px var(--text) solid; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
@@ -65,7 +70,7 @@ <h2 style="margin-top:-20px">Radio</h2> | |
<h3>Player <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="width:20px;height:20px;margin-bottom:-5px;"><path d="M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z"/></svg></h3> | ||
<table class="Tout"> | ||
<tr> | ||
<td><button aria-label="Play radio" onclick="change()" id="MB"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"/></svg></button></td> | ||
<td><button aria-label="Play/Pause radio" onclick="change()" id="MB"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"/></svg></button></td> | ||
<td> | ||
<p>Volume <label id="vol">100</label></p> | ||
<input aria-label="Radio volume" type="range" max="100" min="0" value="100" onchange="c()" oninput="c()" id="ran"> | ||
|
@@ -86,7 +91,8 @@ <h3>Player <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style=" | |
} | ||
</script> | ||
<br><br> | ||
<a href="https://zeno.fm/radio/fsh-fm/"><button>Listen on zeno</button></a> | ||
<a href="https://zeno.fm/radio/fsh-fm" target="_blank"><button>Zeno</button></a> | ||
<a href="https://stream.zeno.fm/f7qzuwipf1gvv"><button>Direct stream</button></a> | ||
<audio controls id="audioPlayer" style="display:none" src="https://stream.zeno.fm/f7qzuwipf1gvv"></audio> | ||
<p style="position:fixed;bottom: 5px;">For suggestions / takedowns contact [email protected]</p> | ||
</body> | ||
|