added more credits

This commit is contained in:
2025-01-22 21:37:00 +01:00
parent 07a432a499
commit 9f2ed4e448
10 changed files with 24 additions and 14 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

+1 -1
View File
@@ -37,7 +37,7 @@ function newTip() {
// then I'll close the source and // then I'll close the source and
// permanently remove the easter egg. // permanently remove the easter egg.
selectedTip = `You like kissing boys, don't you?<br> selectedTip = `You like kissing boys, don't you?<br>
<img src="/assets/boykisser_64x64.png" <img src="/assets/boykissers/boykisser_64x64.png"
style="aspect-ratio: 1 / 1; width: min-content; height: min-content;">` style="aspect-ratio: 1 / 1; width: min-content; height: min-content;">`
} }
else { else {
+15 -10
View File
@@ -27,9 +27,14 @@
<div class="allContainer"> <div class="allContainer">
<div id="optionsContainer" class="borderedRect"> <div id="optionsContainer" class="borderedRect">
<h1 id="optionsCredits" class="h1Top"> <h1 class="optionsCredits h1Top">
Check out the original by Chilli Check out the
<a onclick="slideTransition('https://picrew.me/en/image_maker/2310778')">here</a>! <a onclick="slideTransition('https://picrew.me/en/image_maker/2310778')">original</a> by Chilli!<br>
Boykisser picture presets made by
<a onclick="slideTransition('https://www.deviantart.com/greenbandit2004')">greenbandit2004</a>.<br>
Please contact
<a onclick="slideTransition('https://www.reddit.com/u/RandomPersonDotExe')">u/RandomPersonDotExe</a>
or Discord @bytedice for takedown requests.
</h1><br> </h1><br>
<h1>Basic</h1> <h1>Basic</h1>
@@ -47,13 +52,13 @@
<label for="signatureInput">Signature</label><input type="text" id="signatureInput" name="signatureInput" value="Byte Dice"><br> <label for="signatureInput">Signature</label><input type="text" id="signatureInput" name="signatureInput" value="Byte Dice"><br>
<label for="picInput">Picture</label><select id="picInput" name="picInput"> <label for="picInput">Picture</label><select id="picInput" name="picInput">
<option value="boykisser" >Boykisser</option> <option value="boykisser" >Boykisser</option>
<option value="bi-kisser" >Bi-kisser</option> <option value="bi-kisser" >Bi-kisser</option>
<option value="no-kisser" >No-kisser</option> <option value="Ace-kisser" >Ace-kisser</option>
<option value="pan-kisser" >Pan-kisser</option> <option value="pan-kisser" >Pan-kisser</option>
<option value="trans-kisser">Trans-kisser</option> <option value="trans-kisser" >Trans-kisser</option>
<option value="bytedice" >Byte Dice</option> <option value="bytedice" >Byte Dice</option>
<option value="custom" >Custom (upload)</option> <option value="custom" >Custom (upload)</option>
</select><br> </select><br>
<!-- picture --> <!-- picture -->
</form> </form>
+4 -3
View File
@@ -8,8 +8,9 @@
max-width: 100vw; max-width: 100vw;
flex-grow: 1; flex-grow: 1;
} }
#optionsCredits { .optionsCredits {
margin: 0%; margin: 0%;
max-width: calc(100% - (5px * var(--pxDensity)));
} }
label { label {
background-color: var(--navBarBtn_Inner); background-color: var(--navBarBtn_Inner);
@@ -42,7 +43,7 @@ input {
color: inherit; color: inherit;
display: inline-block; display: inline-block;
} }
.slider { .slider { /* its slightly offset down >:( */
-webkit-appearance: none; -webkit-appearance: none;
appearance: none; appearance: none;
background-color: var(--navBarBtn_Border); background-color: var(--navBarBtn_Border);
@@ -56,7 +57,7 @@ input {
margin: 0%; margin: 0%;
outline: none; outline: none;
padding: 0%; padding: 0%;
} }
.slider::-webkit-slider-thumb, .slider::-moz-range-thumb { .slider::-webkit-slider-thumb, .slider::-moz-range-thumb {
-webkit-appearance: none; -webkit-appearance: none;
appearance: none; appearance: none;
+4
View File
@@ -46,6 +46,10 @@ function setSillyValue(value) {
`; `;
} }
function setPictureValue() {
}
function prependZero(number) { function prependZero(number) {
return number < 10 ? "0" + number : number; return number < 10 ? "0" + number : number;
} }