diff --git a/index.html b/index.html
index 286bd60..21f86a1 100644
--- a/index.html
+++ b/index.html
@@ -67,7 +67,7 @@
- how to say
-
-
+
nɪs, nɪsə
+
- prons
- it or they
- quantity
- 2
@@ -90,7 +93,13 @@ window.addEventListener('DOMContentLoaded', () => {
let link = document.getElementById('soundlink');
let miku = document.getElementById('miku');
if (typeof miku.play == 'function') {
- link.addEventListener('click', e => { miku.play(); e.preventDefault(); });
+ function playMiku(e) {
+ miku.play();
+ e.preventDefault();
+ }
+
+ link.href = '#';
+ link.addEventListener('click', playMiku);
}
});
diff --git a/media/niss-nisse.mp3 b/media/niss-nisse.mp3
index efdc2de..192d588 100644
--- a/media/niss-nisse.mp3
+++ b/media/niss-nisse.mp3
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:fa00e1fe02a08cb0e2f7f54ed1f0ab2d1b82c1845157bc8eab86d27518a2f871
-size 27706
+oid sha256:b68c2b121dbea39dcf4a80946f338241d9d306ee77574a8fad61f47d1493f43f
+size 27890
diff --git a/media/niss-nisse.ogg b/media/niss-nisse.ogg
index 71c7a7d..203496c 100644
--- a/media/niss-nisse.ogg
+++ b/media/niss-nisse.ogg
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:2d4db21fbdb68b5b95872ad486ab57cf0803c8419265eb36612a801b39eed33b
-size 26995
+oid sha256:96b80fce404bfbdb2e2143ea5041c600a853f15dcd60d64cec2fc1553890ef12
+size 29252
diff --git a/style.css b/style.css
index 8239be1..8c2714a 100644
--- a/style.css
+++ b/style.css
@@ -140,13 +140,13 @@ dd {
}
}
-a {
+a[href] {
color: hsl(196deg, 100%, 85%);
font-weight: 800;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
-a:hover {
+a[href]:where(:hover,:focus) {
color: hsl(50deg, 100%, 82%);
}