From 8a2b55f484b65fcf9a851cd9b8f1fc656887d303 Mon Sep 17 00:00:00 2001 From: ByteDice Date: Sat, 18 Jan 2025 16:38:01 +0100 Subject: [PATCH] added 'sign here' section of license toy --- global/globalStyle.css | 2 +- toys/license/index.html | 6 ++++++ toys/license/style.css | 28 ++++++++++++++++++++++++++-- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/global/globalStyle.css b/global/globalStyle.css index 1dffcc9..506386e 100644 --- a/global/globalStyle.css +++ b/global/globalStyle.css @@ -10,7 +10,7 @@ } html { font-family: "Roboto", sans-serif; - font-size: 1rem; + font-size: 1.3rem; color: #ffffff; background-color: #323232; overflow: hidden; diff --git a/toys/license/index.html b/toys/license/index.html index 2edfaa9..4f5f5f1 100644 --- a/toys/license/index.html +++ b/toys/license/index.html @@ -18,8 +18,14 @@
+
+
+

Byte Dice

+

Sign here

+
+

Original by Chilli
Remade by Byte Dice at bytedice.net/toys

diff --git a/toys/license/style.css b/toys/license/style.css index 74d01bf..cfe4d13 100644 --- a/toys/license/style.css +++ b/toys/license/style.css @@ -9,14 +9,15 @@ } #licenseContainer { width: 600px; - height: auto; - aspect-ratio: 1.5 / 1; + height: 400px; padding: 40px; padding-top: 80px; position: absolute; left: 50%; bottom: 0%; transform: translate(-50%, calc(-22px * var(--pxDensity))); + font-size: 0.75rem; + box-sizing: border-box; } .blackBorderRect { background-color: #FFFFFF; @@ -27,4 +28,27 @@ #picContainer { width: 150px; height: 150px; +} +#credits { + position: absolute; + bottom: 0%; + left: 0%; + margin: 0% 0% 0% 20px; + color: var(--navBarBtn_Inner); + font-size: 0.6rem; +} +#signatureContainer { + display: inline-flex; + flex-direction: column; + margin: 5% 0% 0% 0%; +} +#signature { + margin: 0% 0% 0.2rem 0%; + text-align: center; + font-size: 1rem; +} +#signHere { + border-top: #000000 solid 6px; + margin: 0%; + padding: 0% 25px; } \ No newline at end of file