---
id: 5d822fd413a79914d39e9932
title: Step 104
challengeType: 0
dashedName: step-104
---
# --description--
On to the next building! It's the green one in the foreground. Give it a `repeating-linear-gradient` with your building color from `0%` to `5%`, and `transparent` from `5%` to `10%`.
# --hints--
You should give `.fb5` a `background` property.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle(".fb5")?.background);
```
You should give the `background` a `repeating-linear-gradient`.
```js
assert.include(new __helpers.CSSHelp(document).getStyle(".fb5")?.background, "repeating-linear-gradient");
```
You should give the `repeating-linear-gradient` a first color of `--building-color2` from `0%` to `5%`.
```js
assert.match(new __helpers.CSSHelp(document).getStyle(".fb5")?.getPropVal('background', true), /repeating-linear-gradient\(var\(--building-color2\)(0%)?,var\(--building-color2\)5%/);
```
You should give the `repeating-linear-gradient` a second color of `transparent` from `5%` to `10%`.
```js
assert.match(new __helpers.CSSHelp(document).getStyle(".fb5")?.getPropVal('background', true), /repeating-linear-gradient\(var\(--building-color2\)(0%)?,var\(--building-color2\)5%,transparent5%,transparent10%\)/);
```
# --seed--
## --seed-contents--
```html