Step 40
In .bb1a
, add a gradient of type linear-gradient
to the background
property with --building-color1
as the first color and --window-color1
as the second.
Ok…
my code
.bb1a {
width: 70%;
height: 10%;
background-color: var(--building-color1);
background: linear-gradient(--building-color1, --window-color1);
}
does not work.
the following error appears:
Hint
You should apply a background
to .bb1a
.