Fix text-shadow CSS.

The semicolons made it look like the end of a declaration. I got these
errors in the Firefox console:

Expected declaration but found ‘1px’.  Skipped to next declaration. 1 embed.html:29:17
Expected declaration but found ‘-1px’.  Skipped to next declaration. 1 embed.html:30:17
This commit is contained in:
David Fifield 2018-04-17 17:21:46 -07:00
parent 433a47fdf7
commit fd9efa1001

View file

@ -25,8 +25,8 @@
font-variant: small-caps;
text-shadow: 0 0 5px #fef,
0 1px 2px #fef,
0 -1px 2px #fef;
1px 0px 3px #fef;
0 -1px 2px #fef,
1px 0px 3px #fef,
-1px 0px 3px #fef;
}
.active {