Skip to content
This repository was archived by the owner on Oct 31, 2025. It is now read-only.

Commit 4e27df8

Browse files
authored
Update index.html
1 parent e654c6d commit 4e27df8

1 file changed

Lines changed: 27 additions & 4 deletions

File tree

index.html

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@
102102

103103
--soundboard-button-bgcolor: #a1a1a1;
104104
--soundboard-button-hover-bgcolor: #bfbfbf;
105+
106+
--soundboard-stop-button-bgcolor: #d90000;
107+
--soundboard-stop-button-hover-bgcolor: #ff0000;
105108

106109
--usercolors-1: #ff0000;
107110
--usercolors-2: #ff6f00;
@@ -584,18 +587,18 @@
584587
"
585588
/>
586589
<button id="Send" class="roundborder" title="Send message">
587-
<img src="https://random-rants-chat.github.io/randomrants-emojis/icons/send.svg" height="25" />
590+
<img src="https://random-rants-chat.github.io/randomrants-emojis/icons/send.svg?n=1" height="25" />
588591
</button>
589592
<button id="SendHidden" class="roundborder" title="Send hidden message">
590-
<img src="https://random-rants-chat.github.io/randomrants-emojis/icons/sendhidden.svg" height="25" />
593+
<img src="https://random-rants-chat.github.io/randomrants-emojis/icons/sendhidden.svg?n=1" height="25" />
591594
</button>
592595
<button
593596
id="Clear"
594597
onclick="messages.children[0].innerHTML = '';clickSound();"
595598
class="roundborder"
596599
title="Clear chat"
597600
>
598-
<img src="https://random-rants-chat.github.io/randomrants-emojis/icons/clearchat.svg" height="25" />
601+
<img src="https://random-rants-chat.github.io/randomrants-emojis/icons/clearchat.svg?n=1" height="25" />
599602
</button>
600603
<br />
601604
<br />
@@ -1244,6 +1247,25 @@ <h1>Emoji Added!</h1>
12441247
background: var(--soundboard-button-hover-bgcolor);
12451248
cursor: pointer;
12461249
}
1250+
1251+
.soundboardButtonStop {
1252+
min-width: 100px;
1253+
min-height: 100px;
1254+
width: fit-content;
1255+
height: fit-content;
1256+
font-size: 20px;
1257+
background: var(--soundboard-stop-button-bgcolor);
1258+
display: flex;
1259+
align-items: center;
1260+
justify-content: center;
1261+
margin-right: 5px;
1262+
margin-bottom: 5px;
1263+
flex-wrap: wrap;
1264+
}
1265+
.soundboardButtonStop:hover {
1266+
background: var(--soundboard-stop-button-hover-bgcolor);
1267+
cursor: pointer;
1268+
}
12471269

12481270
#soundboardButtons {
12491271
display: flex;
@@ -1264,6 +1286,8 @@ <h1>Emoji Added!</h1>
12641286
>Uploaded sounds can be removed by holding shift and clicking
12651287
them.</span
12661288
><br />
1289+
<b>Soundboard volume</b><input type="range" min="0" max="100" value="100" id="soundboardVolumeInput">
1290+
<br />
12671291
<button id="soundboardUploadButton">Upload Custom Sound</button>
12681292
<button
12691293
onclick="document.getElementById('soundboardElement').hidden = true;"
@@ -1651,7 +1675,6 @@ <h3>Credits:</h3>
16511675

16521676
<script src="chat.js" onerror="window.alert(e);"></script>
16531677

1654-
<script src="adminchat.js?n=1"></script>
16551678
<script src="screen-share-2.js?n=1"></script>
16561679
<script src="confetti.js?n=1"></script>
16571680
<script>

0 commit comments

Comments
 (0)