diff --git a/assets/audio.png b/assets/audio.png new file mode 100644 index 0000000..f7045f4 Binary files /dev/null and b/assets/audio.png differ diff --git a/assets/mute.png b/assets/mute.png new file mode 100644 index 0000000..0938548 Binary files /dev/null and b/assets/mute.png differ diff --git a/css/style.css b/css/style.css index 95a0711..2934a3d 100644 --- a/css/style.css +++ b/css/style.css @@ -490,4 +490,42 @@ body { } .next{ cursor: pointer; -} \ No newline at end of file +} + +.toggle-audio-container { + display: flex; + position: fixed; + top: 0; + left: 0; + right: 0; + justify-content: flex-end; + color: #fff; + padding: 15px 25px 0 0; + z-index: 10000; + transition: 0ms; + animation: none; +} + + +.toggle-audio { + background-image: url(../assets/mute.png); + height: 30px; + width: 30px; + opacity: 0.3; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + cursor: pointer; + transition: 0ms; +} + +.toggle-audio.active{ + height: 30px; + width: 30px; + background-image: url(../assets/audio.png); + opacity: 0.3; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + transition: 0ms; +} diff --git a/index.html b/index.html index f247d17..65ee2f8 100644 --- a/index.html +++ b/index.html @@ -11,62 +11,6 @@ -