scrimba
UI Design
UI Fundamentals
Design Challenge: 1
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

Design Challenge: 1
AboutCommentsNotes
Design Challenge: 1
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
}

body {
height: 100vh;
display: grid;
grid-template-columns: repeat(3, auto);
place-items: center;
background: lightblue;
grid-gap: 2em;
}

.card {
background: white;
}
span {
height: 100px;
display: block;
width: 100%;
background: #71A6B8;
}

p.date {
text-align: center;
font-size: .7em;
text-transform: uppercase;
}
h3 {
margin: 0;
}
p.desc {
font-size: .9em;
}

/*
Use the following properties
to fix the alignment and white
space issues on the rulesets
below this comment.

margin, padding, text-align

*/

body {

}
.content {

}

p.date {

}

h3 {

}

p.desc {

}
Console
/index.html
-4:20