scrimba
Figma to code
Landing page
CSS: Finishing Mobile Styles
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

CSS: Finishing Mobile Styles
AboutCommentsNotes
CSS: Finishing Mobile Styles
Expand for more info
index.css
run
preview
console
body {
margin: 0;
font-family: 'Poppins';
}

.left-col {
background: #5200FF;
color: white;
position: relative;
text-align: center;
}

.left-col:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.22;
background-image: url('bg.jpg');
background-size: cover;
background-position: 100%;
}

.content {
position: relative;
}

.left-col, .right-col {
padding: 6.75rem 8vw;
}
Console
/index.html
-7:46