scrimba
Responsive Design
CSS Grid
repeat()
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
repeat()
Expand for more info
css
style.css
run
preview
console
body {
font-family: 'Raleway', sans-serif;
color: #555;
background: #333;
margin: 3em;
}

.portfolio {
padding: 1em;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 1em;
}

.portfolio-title {
text-align: center;
color: #00C896;
grid-column: 1 / -1;
}

img {
max-width: 100%;
}

.portfolio-card {
box-shadow: 0 0 1em rgba(0,0,0,.25);
padding: 1em;
background: white;
}

.portfolio-card-title {
font-size: 1.5rem;
color: #000;
}
Console
index.html
-3:22