SzabiSch / bootcamp-schedule

0 stars 0 forks source link

Kata: Neon Sign #49

Closed codingbootcampseu closed 2 years ago

codingbootcampseu commented 3 years ago

Create a neon sign that can be switched on like this.

The example solution contains no JavaScript but you can as well also use JavaScript if you want.

image

Hints

There is a flickering effect on the neon sign which is made with CSS Keyframes.

It is possible to add multiple text-shadows to the same element.

.neon {
  text-shadow: 0 0 5px gold, 0 0 10px gold;
}

The example solutions uses the Pacifico font from Google Fonts.

SzabiSch commented 2 years ago

Checkbox hat einiges an Zeit geraubt, keyframes ist schon mal cool, noch nicht perfekt, aber Aufgabe erfüllt