Comment on Ask HN: Please review our new service - ZukmoparentComments−photon_off15yIf you're referring to the white shadow of the text, it is indeed css. text-shadow: 1px 1px 0px white;−amjith15yThank you for the tip. I've always wondered how to make the fonts look engraved on the page.−photon_off15yYou can also specify more than 1 shadow. You can add a light shadow below, and a dark one above, to achieve an "embossed" effect: text-shadow: -1px -1px 0px rgba(0,0,0,.4), 1px 1px 0px rgba(255,255,255,.4);
Comments
If you're referring to the white shadow of the text, it is indeed css.
Thank you for the tip. I've always wondered how to make the fonts look engraved on the page.
You can also specify more than 1 shadow. You can add a light shadow below, and a dark one above, to achieve an "embossed" effect: