added more credits
|
After Width: | Height: | Size: 112 KiB |
|
After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 119 KiB |
@@ -37,7 +37,7 @@ function newTip() {
|
||||
// then I'll close the source and
|
||||
// permanently remove the easter egg.
|
||||
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;">`
|
||||
}
|
||||
else {
|
||||
|
||||
@@ -27,9 +27,14 @@
|
||||
|
||||
<div class="allContainer">
|
||||
<div id="optionsContainer" class="borderedRect">
|
||||
<h1 id="optionsCredits" class="h1Top">
|
||||
Check out the original by Chilli
|
||||
<a onclick="slideTransition('https://picrew.me/en/image_maker/2310778')">here</a>!
|
||||
<h1 class="optionsCredits h1Top">
|
||||
Check out the
|
||||
<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>Basic</h1>
|
||||
@@ -47,13 +52,13 @@
|
||||
<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">
|
||||
<option value="boykisser" >Boykisser</option>
|
||||
<option value="bi-kisser" >Bi-kisser</option>
|
||||
<option value="no-kisser" >No-kisser</option>
|
||||
<option value="pan-kisser" >Pan-kisser</option>
|
||||
<option value="trans-kisser">Trans-kisser</option>
|
||||
<option value="bytedice" >Byte Dice</option>
|
||||
<option value="custom" >Custom (upload)</option>
|
||||
<option value="boykisser" >Boykisser</option>
|
||||
<option value="bi-kisser" >Bi-kisser</option>
|
||||
<option value="Ace-kisser" >Ace-kisser</option>
|
||||
<option value="pan-kisser" >Pan-kisser</option>
|
||||
<option value="trans-kisser" >Trans-kisser</option>
|
||||
<option value="bytedice" >Byte Dice</option>
|
||||
<option value="custom" >Custom (upload)</option>
|
||||
</select><br>
|
||||
<!-- picture -->
|
||||
</form>
|
||||
|
||||
@@ -8,8 +8,9 @@
|
||||
max-width: 100vw;
|
||||
flex-grow: 1;
|
||||
}
|
||||
#optionsCredits {
|
||||
.optionsCredits {
|
||||
margin: 0%;
|
||||
max-width: calc(100% - (5px * var(--pxDensity)));
|
||||
}
|
||||
label {
|
||||
background-color: var(--navBarBtn_Inner);
|
||||
@@ -42,7 +43,7 @@ input {
|
||||
color: inherit;
|
||||
display: inline-block;
|
||||
}
|
||||
.slider {
|
||||
.slider { /* its slightly offset down >:( */
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
background-color: var(--navBarBtn_Border);
|
||||
@@ -56,7 +57,7 @@ input {
|
||||
margin: 0%;
|
||||
outline: none;
|
||||
padding: 0%;
|
||||
}
|
||||
}
|
||||
.slider::-webkit-slider-thumb, .slider::-moz-range-thumb {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
@@ -46,6 +46,10 @@ function setSillyValue(value) {
|
||||
`;
|
||||
}
|
||||
|
||||
function setPictureValue() {
|
||||
|
||||
}
|
||||
|
||||
function prependZero(number) {
|
||||
return number < 10 ? "0" + number : number;
|
||||
}
|
||||
|
||||