Skip to content

Commit

Permalink
Update characterCreator.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davespser authored Dec 6, 2024
1 parent b368adc commit 8e49658
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/characterCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 8e49658

Please sign in to comment.