diff --git a/WEB/src/CSS/enigme.css b/WEB/src/CSS/enigme.css index ba1db73b..defe554d 100644 --- a/WEB/src/CSS/enigme.css +++ b/WEB/src/CSS/enigme.css @@ -66,8 +66,8 @@ body{ --border-color: hsla(0, 0%, 100%, .2); --global-background: hsl(220, 25%, 10%); --background: linear-gradient(to right, #040a29, #0e1538); - --shadow-1: hsla(236, 50%, 50%, .3); - --shadow-2: hsla(236, 50%, 50%, .4); + --shadow-1: #0b1b78; + --shadow-2: #173c45; } .enigme{ @@ -279,7 +279,7 @@ body{ color: aliceblue; background: var(--background); - box-shadow: var(--m-shadow, .4rem .4rem 10.2rem .2rem) var(--shadow-1); + box-shadow: var(--m-shadow, .4rem .4rem 8.2rem .2rem) var(--shadow-1); position: relative; overflow: hidden; } @@ -308,7 +308,7 @@ body{ display: flex; justify-content: flex-end; align-items: flex-start; - width: 100%; + width: auto; height: 50%; } @@ -316,7 +316,7 @@ body{ display: flex; justify-content: center; align-items: flex-end; - width: 100%; + width: auto; height: 50%; } diff --git a/WEB/src/JS/palindrome.js b/WEB/src/JS/palindrome.js index 803ccab1..b2b92918 100644 --- a/WEB/src/JS/palindrome.js +++ b/WEB/src/JS/palindrome.js @@ -29,6 +29,7 @@ print(testPalindrome(5)) `; exec("print ('True')", "code"); exec(test, "solution"); + result.innerHTML = "Test en cours..."; await new Promise(r => setTimeout(r, 1500)); check(); }