Hi fcc support,
I have a question on the use of linear gradient for step 40 on the building a city skyline tutorial. I am entering the following code and the background transitions from purple to black:
.bb1a {
background: linear-gradient(#aa80ff, black);
}
However; this code does not pass the step.
When I enter the following suggested code through the hint provided:
.bb1a {
background: linear-gradient(–building-color1, --window-color1);
}
No color change displays and the code does not pass. The hint indicates to start by using --building-color1 - which I am entering already. What should I consider entering for the code in this step ? What am I not entering correctly?