04-32-letterpress-effect.html 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Letterpress effect using CSS</title>
  6. <style>
  7. body {
  8. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  9. font-size: .9375em;
  10. line-height: 1.4;
  11. }
  12. h1 {
  13. font-size: 4em;
  14. color: #666;
  15. line-height: 2;
  16. }
  17. .impressed,
  18. .embossed,
  19. .amp {
  20. padding: .25em;
  21. display: inline-block;
  22. vertical-align: top;
  23. }
  24. .impressed {
  25. background-color: #6990E1;
  26. color: #31446B;
  27. text-shadow: 0 -1px 1px #B3D6F9, 0 1px 0 #243350;
  28. }
  29. .embossed {
  30. background-color: #3C5486;
  31. color: #92B1EF;
  32. text-shadow: 0 -1px 0 #243350, 0 1px 0 #DEF2FE;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <h1><span class="impressed">Impressed</span> <span class="embossed">Embossed</span></h1>
  38. </body>
  39. </html>