04-33-experimenting-with-shadows.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Experimenting with text-shadow</title>
  6. <link href='https://fonts.googleapis.com/css?family=Nunito:700' rel='stylesheet' type='text/css'>
  7. <style>
  8. h1 {
  9. font-family: Nunito, "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
  10. color: #5C8DB9;
  11. text-transform: uppercase;
  12. font-size: 7em;
  13. font-weight: 700;
  14. padding: 1em;
  15. text-shadow: -1px 1px 0 #233956,
  16. -2px 2px 0 #233956,
  17. -3px 3px 0 #233956,
  18. -4px 4px 0 #233956,
  19. -5px 5px 0 #233956,
  20. -6px 6px 0 #233956,
  21. -7px 7px 0 #233956,
  22. -8px 8px 0 #233956,
  23. -9px 9px 0 #233956,
  24. -10px 10px 0 #233956,
  25. -11px 11px 0 #233956,
  26. -12px 12px 0 #233956,
  27. -13px 13px 0 #233956,
  28. -14px 14px 0 #233956,
  29. -15px 15px 0 #233956,
  30. -16px 16px 0 #233956,
  31. -17px 17px 0 #233956,
  32. -18px 18px 0 #233956,
  33. -19px 19px 0 #233956,
  34. -20px 20px 0 #233956,
  35. -21px 21px 0 #233956,
  36. -22px 22px 0 #233956,
  37. -23px 23px 0 #233956;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <h1>Space Vacation</h1>
  43. </body>
  44. </html>