scrimba
Figma to code
Simple Card
Simple Card - Finishing Up
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

Simple Card - Finishing Up
AboutCommentsNotes
Simple Card - Finishing Up
Expand for more info
index.css
run
preview
console
body {
margin: 0;
padding: 0;
height: 100vh;
display: grid;
place-items: center;
background: #2D2E36;
font-family: 'Poppins';
}

img {
width: 100%;
border-radius: .2rem;
}

a {
text-decoration: none;
}

.container {
background: #383A45;
margin: 1rem;
padding: 1rem;
border-radius: .4rem;
max-width: 270px;
}
Console
/index.html
-7:21