scrimba
CSS Challenges
Challenge - Github Profile Layout
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 - Github Profile Layout
AboutCommentsNotes
Challenge - Github Profile Layout
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
background: #000;
color: #c9d1d9;
}

:root {
--font-main: 'Noto Sans', sans-serif;
--main-bg: #000;
--profile-bg: #0d1117;
--profile-color: #c9d1d9;
--profile-img-border: #2e343b;
--username-font-color: #8b949e;
--username-font-weight: 400;
--btn-bg: #21262d;
--btn-color: #c9d1d9;
--btn-bg-hover: #30363d;
--btn-border: #373b43;
--btn-border-hover: #8c949e;
}
Console
/index.html
-2:35