@HyoganSubmitted almost 2 years ago
-The overlay was hard. But i thing i managed to do the job. -i'm happy of the rotation animation on the stats, i think they were my first -Please look at my code , and tell me what i made wrong
-The overlay was hard. But i thing i managed to do the job. -i'm happy of the rotation animation on the stats, i think they were my first -Please look at my code , and tell me what i made wrong
Hi Nelson !
I like the rotation animation !
Here a suggestion :
body
tag min-height: 100vh;
, and delete in the .main-bloc
class margin-top: 200px;
Hope it will help you !
Newbie here, starting my coding journey.
I would appreciate any suggestions, comments, tips, and advice.
Hi Fadi !
Here are some tips :
<main>
tag instead of <div class="main">
<btn>
tag is not a part of HTML5 semantic, you should use instead <button>
display: flexbox
or display: grid
.
You will find more information hereGrid
in the class .main
eg. :.main {
display: grid
place-items: center
min-width: 100vw;
min-height: 100vh;
}
Hope it will help you !