First time poster, not sure how to get all the required info in.
Anyway: I’m trying to complete this step the best I can. I’ve searched every help topic on this step, in this forum, and nothing seems to be moving me forward. I’ve tried removing the ‘var’ from --building-color1 and --window-color1, and then it will tell me to use background on .bb1d and i’m confused. Please help!
Step 44
Gradients can use as many colors as you want like this:
Example Code
gradient-type(
color1,
color2,
color3
);
Add a linear-gradient
to .bb1d
with orange
as the first color, --building-color1
as the second, and --window-color1
as the third. Remember to use the gradient on the background
property.
.bb1d {
width: 100%;
height: 70%;
background-color: var(–building-color1);
background: linear-gradient(
orange),
var(–building-color1),
var(–window-color1);
}
Sorry, your code does not pass. Keep trying.
You should use --building-color1
as the second color in the linear-gradient
.