scrimba
The Odin project - CSS cascade
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

The Odin project - CSS cascade
AboutCommentsNotes
The Odin project - CSS cascade
Expand for more info
index.css
run
preview
console
* {
line-height: 1.5;
}

body {
font-family: Arial, Helvetica, sans-serif;
}

img {
width: 200px;
}

ul {
list-style: none;
}

h1 {
color: darkred;
}

.recipe-card {
width: 400px;
text-align: center;
background-color: #FFFAFA;
}

.recipe-content {
text-align: left;
}

.recipe-card h2,
.recipe-card a {
text-transform: uppercase;
}

.recipe-card.feature {
border: 2px solid darkred;
}

ul li h2 {
font-size: 16px;
}

.recipe-card a {
background-color: #fc9400;
color: #fff;
text-decoration: none;
}
Console
/index.html
-8:38