More Text Shadows
Here are some demonstations of the kinds of effects that can be achieved with the text-shadow property.The vintage retro effect is made up of two text shadows, but the first is set to the same colour as the background in order to give the impression that the second shadow (the thin dark grey one) is offset to the bottom right. Remember to make sure your first shadow colour is set to the the colour as your page background, and the text and second shadow also both use the same colour.
text-shadow: 5px 5px 0px #eee, 7px 7px 0px #707070;
Vintage retro
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
Neon
text-shadow: 0px 2px 3px #666;
Inset
text-shadow: 8px 8px 0 rgba(255,0,180,0.5);
Anaglyphic
text-shadow: 0 0 20px #fefcc9, 10px -10px 30px #feec85, -20px -20px 40px #ffae34, 20px -40px 50px #ec760c, -20px -60px 60px #cd4606, 0 -80px 70px #973716, 1 0px -90px 80px #451b0e;
Text on Fire
The board game text effect simply uses multiple shadows each with an increasing amount of offset from the original text to create an
alternating series of colours. No blurring is used to keep the shadows crisp and sharp as exact reproductions of the original text.
text-shadow: 10px 10px 0 #ffd217, 20px 20px 0 #5ac7ff, 30px 30px 0 #ffd217, 40px 40px 0 #5ac7ff;