So, looks like I inserted this into step 77:
background: repeating-linear-gradient(90deg, var(–building-color4), var(–building-color4) 10%, transparent 10%, transparent 15%)
…but I forgot the semi-colon ( ; )
in step 78, I’m asked to:
Add a
repeating-linear-gradient
to.fb1c
below the one that’s there; use your--building-color4
from0%
to10%
and--window-color4
from10%
and90%
. This will fill in behind the gradient you added last.
The problem is: I don’t have the semi-colon closing the previous command, so I’m stuck in this bug: if I insert the semi-colon above, the code is working but I receive this error:
You should not alter the first repeating-linear-gradient.
If I remove the semi-colon, I receive this error:
You should add a
repeating-linear-gradient
with a first color of--building-color4
from0%
to10%
.
The code is:
.fb1c {
width: 100%;
height: 80%;
background: repeating-linear-gradient(
90deg,
var(–building-color4),
var(–building-color4) 10%,
transparent 10%,
transparent 15%
)
background: repeating-linear-gradient(
var(–building-color4) 0%,
var(–building-color4) 10%,
var(–window-color4) 10%,
var(–window-color4) 90%
);
}