thisisnotras

empathy?

Feb 28th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <style>
  2.  
  3. body {
  4. background: #3e5679;
  5. }
  6.  
  7. #whole{
  8. position: absolute;
  9. top: 0px;
  10. left: 0px;
  11. right: 0px;
  12. bottom: 0px;
  13. background-image:url(https://i.imgur.com/KdMIXFU.png);
  14. background-size: auto 100%;
  15. background-position: bottom right;
  16. background-repeat: no-repeat;}
  17.  
  18. #transparenttext{
  19. position: absolute;
  20. top: 0px;
  21. left: 0px;
  22. right: 0px;
  23. bottom: 0px;
  24. background-image:url(https://www.transparenttextures.com/patterns/3px-tile.png);
  25. opacity: .6;
  26. -webkit-animation: textshift .1s infinite linear;
  27. animation: textshift .1s infinite linear;
  28. }
  29.  
  30. @-webkit-keyframes textshift{
  31. 0%{opacity:.3;}
  32. 100%{opacity:.5;}
  33. }
  34.  
  35. @keyframes textshift{
  36. 0%{opacity:.3;}
  37. 100%{opacity:.5;}
  38. }
  39.  
  40. </style>
  41.  
  42. <div id="whole">
  43. </div>
  44.  
  45. <div id="transparenttext">
  46. </div>
Advertisement
Add Comment
Please, Sign In to add comment