Skip to content

Commit 47622df

Browse files
committed
- update spotify music quiz
1 parent 3c05dac commit 47622df

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tools/spotify_music_quiz_cards.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
width: 60vmin;
8888
height: 60vmin;
8989
font-size: 30vmin;
90+
padding-bottom: 7vmin;
9091
border: none;
9192
border-radius: 50%;
9293
background: linear-gradient(145deg, #1DB954, #169c45);
@@ -97,6 +98,8 @@
9798
display: flex;
9899
justify-content: center;
99100
align-items: center;
101+
font-weight: 900;
102+
text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
100103
}
101104

102105
#pauseResumeButton:hover {
@@ -162,7 +165,7 @@
162165

163166
<div id="player" class="hidden">
164167
<div class="button-container">
165-
<button id="pauseResumeButton">⏸️</button>
168+
<button id="pauseResumeButton">||</button>
166169
<a href="https://www.gptgames.dev/tools/spotify_qr_scanner" class="scan-button">
167170
Scan for next song
168171
</a>
@@ -186,7 +189,7 @@
186189
playerInstance.resume();
187190
}
188191
isPlaying = !isPlaying;
189-
pauseResumeButton.textContent = isPlaying ? '⏸️' : '▶️';
192+
pauseResumeButton.textContent = isPlaying ? '||' : '';
190193
}
191194

192195
function getUrlParameter(name) {

0 commit comments

Comments
 (0)