From 8e49658a01015bd66921074a8121ce964e76ac6a Mon Sep 17 00:00:00 2001 From: David espinosa <104380606+davespser@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:31:59 +0100 Subject: [PATCH] Update characterCreator.js --- js/characterCreator.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/characterCreator.js b/js/characterCreator.js index 8de8823f..8bf531c8 100644 --- a/js/characterCreator.js +++ b/js/characterCreator.js @@ -36,15 +36,15 @@ const questions = [ const container = document.createElement("div"); container.id = "questionnaire"; container.style.position = "absolute"; -container.style.top = "10%"; -container.style.left = "80%"; +container.style.top = "30%"; +container.style.left = "90%"; container.style.transform = "translate(-50%, -50%)"; container.style.backgroundColor = "rgba(0, 0, 0, 0.8)"; -container.style.color = "white"; +container.style.color = "green"; container.style.padding = "20px"; container.style.borderRadius = "10px"; container.style.fontFamily = "Arial, sans-serif"; -container.style.textAlign = "justify"; +container.style.textAlign = "left"; document.body.appendChild(container); const submitButton = document.createElement("button");