From 1eab30c78db9803f3b29bb5e19aa3f3c5d2818c7 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 3 Dec 2022 22:04:28 +0100 Subject: [PATCH] fix style --- js/main.js | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/js/main.js b/js/main.js index c8a0325..5c4bebb 100644 --- a/js/main.js +++ b/js/main.js @@ -8,7 +8,7 @@ window.addEventListener("load", () => main()); const main = () => { document.body.style = "background-color: black;"; - let titleGame = document.createElement("p"); + let titleGame = document.createElement("h1"); titleGame.textContent = "GeometryDash 3D"; titleGame.style = "-webkit-animation-name: animTitle; \ @@ -19,23 +19,13 @@ const main = () => { font-size: 400%;"; document.body.appendChild(titleGame); - let normalGame = document.createElement("button"); - normalGame.textContent = "Partie normale"; - normalGame.style = - "margin-top: 20%; \ - border: none; \ - background: none; \ - color: white; \ - font-size: 400%; \ - cursor: pointer;"; - document.body.appendChild(normalGame); - let demoGame = document.createElement("button"); demoGame.textContent = "Partie démo"; demoGame.style = - "position: absolute; \ - top: 40%; \ - left: 37%; \ + "margin: 10%; \ + display: block; \ + margin-left: auto; \ + margin-right: auto; \ border: none; \ background: none; \ color: white; \ @@ -43,6 +33,20 @@ const main = () => { cursor: pointer;"; document.body.appendChild(demoGame); + let normalGame = document.createElement("button"); + normalGame.textContent = "Partie normale"; + normalGame.style = + "margin: 10%; \ + display: block; \ + margin-left: auto; \ + margin-right: auto; \ + border: none; \ + background: none; \ + color: white; \ + font-size: 400%; \ + cursor: pointer;"; + document.body.appendChild(normalGame); + const removeMenu = () => { document.body.removeChild(titleGame); document.body.removeChild(normalGame);