scrimba
CSS Challenges
Solution: Jeopardy Flashcard
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Solution: Jeopardy Flashcard
AboutCommentsNotes
Solution: Jeopardy Flashcard
Expand for more info
index.css
run
preview
console
body, html {  
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}

:root {
--jeopardy-blue: #060CE9;
--font-color-main: #fff;
}
Console
/index.html
-5:17