scrimba
CSS Challenges
Challenge: 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

Challenge: Jeopardy Flashcard
AboutCommentsNotes
Challenge: 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
-2:44