Build a City Skyline - Step 75

Tell us what’s happening:

What am I missing from this ?
You should add a repeating-linear-gradient with a first color of --building-color4 from 0% to 10%.

Your code so far

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

/* file: styles.css */
/* User Editable Region */
  background: repeating-linear-gradient(
    90deg,
    var(--building-color4),
    var(--building-color4) 10%,
    transparent 10%,
    transparent 15%
  ),
  repeating-linear-gradient(
    90deg,
    var(--building-color4),
    var(--building-color4) 10%,
    var(--window-color4) 10%,
    var(--window-color4) 90%
  );
    
/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build a City Skyline - Step 75

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e9917.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @lmw8065,

Try removing the direction, since that was not asked.

Happy coding