scrimba
Frontend Career Path
Web dev basics
Build a Google.com clone
Center the button
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

AboutCommentsNotes
Center the button
Expand for more info
styles.css
run
preview
console
.main {
margin-top: 100px;
}

.logo-img {
display: block;
width: 300px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
}

.search-input {
display: block;
width: 400px;
margin-left: auto;
margin-right: auto;
line-height: 24px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 30px;
padding-right: 30px;
border: 1px solid #dfe1e5;
border-radius: 24px;
}

/*
Challenge:
Center the button and add some space above it
*/

Console
/index.html
-2:16