diff --git a/assets/boykissers/ace-boykisser.png b/assets/boykissers/ace-boykisser.png new file mode 100644 index 0000000..b7f512b Binary files /dev/null and b/assets/boykissers/ace-boykisser.png differ diff --git a/assets/boykissers/bi-kisser.png b/assets/boykissers/bi-kisser.png new file mode 100644 index 0000000..d33cadb Binary files /dev/null and b/assets/boykissers/bi-kisser.png differ diff --git a/assets/boykissers/boykisser.png b/assets/boykissers/boykisser.png new file mode 100644 index 0000000..aa78e8e Binary files /dev/null and b/assets/boykissers/boykisser.png differ diff --git a/assets/boykisser_64x64.png b/assets/boykissers/boykisser_64x64.png similarity index 100% rename from assets/boykisser_64x64.png rename to assets/boykissers/boykisser_64x64.png diff --git a/assets/boykissers/pan-boykisser.png b/assets/boykissers/pan-boykisser.png new file mode 100644 index 0000000..0673ad7 Binary files /dev/null and b/assets/boykissers/pan-boykisser.png differ diff --git a/assets/boykissers/trans-boykisser.png b/assets/boykissers/trans-boykisser.png new file mode 100644 index 0000000..87c2e73 Binary files /dev/null and b/assets/boykissers/trans-boykisser.png differ diff --git a/global/loadingScreen.js b/global/loadingScreen.js index 47c828f..7248a58 100644 --- a/global/loadingScreen.js +++ b/global/loadingScreen.js @@ -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?
- ` } else { diff --git a/toys/license/index.html b/toys/license/index.html index 0cebc61..e1b8f3e 100644 --- a/toys/license/index.html +++ b/toys/license/index.html @@ -27,9 +27,14 @@
-

- Check out the original by Chilli - here! +

+ Check out the + original by Chilli!
+ Boykisser picture presets made by + greenbandit2004.
+ Please contact + u/RandomPersonDotExe + or Discord @bytedice for takedown requests.


Basic

@@ -47,13 +52,13 @@

diff --git a/toys/license/options.css b/toys/license/options.css index 6a4cd34..aefd0bf 100644 --- a/toys/license/options.css +++ b/toys/license/options.css @@ -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; diff --git a/toys/license/script.js b/toys/license/script.js index c613e61..292fc6f 100644 --- a/toys/license/script.js +++ b/toys/license/script.js @@ -46,6 +46,10 @@ function setSillyValue(value) { `; } +function setPictureValue() { + +} + function prependZero(number) { return number < 10 ? "0" + number : number; }