scrimba
HTML & CSS Challenges
Bonus Challenge
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

Bonus Challenge
AboutCommentsNotes
Bonus Challenge
Expand for more info
css
style.css
run
preview
console
body {
margin: 0;
}

/* solution with h1 only */

h1 {
background-color: #281B2D;
color: #fff;
text-align: center;
font-size: 72px;
margin-top: 0;
padding: 25px 0;
}


/* solution with header styled */

/* header {
background-color: #281B2D;
color: #fff;
text-align: center;
padding: 20px;
}

h1 {
font-size: 72px;
margin: 0;
} */

.subhead {
background-color: #281B2D;
color: #FCD801;
font-size: 48px;
padding: 20px;
border-bottom: 5px solid #00C54C;
}

.white-text { color: #fff }

.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

.row {
display: flex;
}

.col-left {
margin-left: 25px;
}

.main-content {
width: 70%;
}

.sidebar {
width: 30%;
margin-left: 45px;
}

Console
/index.html
-1:28