scrimba
CSS Challenges
Solution: Codepen Tile
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: Codepen Tile
AboutCommentsNotes
Solution: Codepen Tile
Expand for more info
index.css
run
preview
console
/* Colors 
body background: #131417
tile background: #1e1f26
username: #b7bbc8
card stats background: #131417
*/

:root {
--font-main: 'Noto Sans', sans-serif;
--bg-main: #131417;
--bg-card: #1e1f26;
--bg-stats: #131417;
--username: #b7bbc8;
}

html, body {
margin: 0;
padding: 0;
}
Console
/index.html
-5:55