Letterpress effect with CSS -
i want make letterpress effect this: in css. can't seem find right text-shadow it.
color of word: #2f4050 color of background: #4f6478
i've tried with:
.letterpress { color:#2f4050; font-family:tahoma, helvetica, arial, sans-serif; font-size:70px; font-style:normal; font-variant:normal; font-weight:normal; line-height:normal; text-align:center; text-shadow:#4f6478 0 1px 5px; }
but doesn't seem trick.
.letterpress { color:#2f4050; font-family:tahoma, helvetica, arial, sans-serif; font-size:70px; text-align:center; text-shadow: 0 1px 1px #fff; }
that should it. btw. don't have declare "normal" value pairs
Comments
Post a Comment