Build a City Skyline - Step 74

Tell us what’s happening:

I’ve done the background on this step correctly, double-checked my other times I’ve done the repeating linear gradient, even copy-pasted the working code and then modified it to have the stops necessary for this current step. It’s just not working and I don’t know why or how to fix it.

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

.fb1c {
  width: 100%;
  height: 80%;
  background: repeating-linear-gradient(
      90deg,
      var(--building-color4) 0%,
      var(--building-color4) 10%,
      var(transparent) 10%,
      var(transparent) 15%
    );
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36

Challenge Information:

Build a City Skyline - Step 74

Check the syntax for writing transparent. You haven’t declared it as a variable and nor would you need to.

thanks, I didn’t think about that. sorry I’m running on little caffeine