Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8. <head>
  9. <title>TODO supply a title</title>
  10. <meta charset="UTF-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <style>
  13. ul,
  14. li
  15. {
  16. decoration:none;
  17. display:inline;
  18. }
  19.  
  20. li
  21. {
  22. font-size:600px;
  23. letter-spacing: -150px;
  24. }
  25.  
  26. li:nth-child(1)
  27. {
  28. color:yellowgreen;
  29. }
  30.  
  31. li:nth-child(2)
  32. {
  33. color:blueviolet;
  34. }
  35. li:nth-child(3)
  36. {
  37. color:blue;
  38. }
  39.  
  40. li:nth-child(4)
  41. {
  42. color:yellow;
  43. }
  44. .blend li
  45. {
  46. mix-blend-mode: difference;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <ul class="blend">
  52. <li>D</li>
  53. <li>k</li>
  54. <li>I</li>
  55. <li>T</li>
  56. </ul>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement