I’m working on the CSS lesson building the colored markers. I skipped step 49 because I was not sure what it was asking. I was able to figure it out in the following steps but when I go back or “Resume Project”, it just displays the code. There is nothing else on the screen. I have no idea how to get to 100% completion on this. Step 49 is the only one not completed. This is what I see when I click Resume Project. All other steps are completed.
h1 {
text-align: center;
}
.container {
background-color: rgb(255, 255, 255);
padding: 10px 0;
}
.marker {
width: 200px;
height: 25px;
margin: 10px auto;
}
.red {
background-color: rgb(255, 0, 0);
}
.green {
background-color: #007F00;
}
.blue {
background-color: hsl(240, 100%, 50%);
}