scrimba
Frontend Career Path
Web dev basics
Build a Google.com clone
Let's learn CSS!
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
Let's learn CSS!
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;
}

.btn-wrapper {
display: flex;
justify-content: center;
}

.btn {
margin-left: 4px;
margin-right: 4px;
margin-top: 30px;
background: #dfe1e5;
border: none;
padding-top: 8px;
padding-bottom: 8px;
padding-left: 16px;
padding-right: 16px;
border-radius: 4px;
font-size: 14px;
}

Console
/index.html
-0:44