Guest User

Untitled

a guest
May 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. div {
  2. width: 100%;
  3. height: 100vh;
  4. background: #111;
  5. }
  6. div::before{
  7. content: '╲╱';
  8. color: #fff;
  9. position: absolute;
  10. opacity: 0.7;
  11. text-shadow: 0 0 6px rgba(0,0,0,0.5);
  12. font-size: 20px;
  13. width: 60px;
  14. height: 40px;
  15. line-height: 40px;
  16. text-align: center;
  17. border-radius: 10px;
  18. bottom: 20px;
  19. left: 50%;
  20. margin-left: -30px;
  21. animation: bounce 1s ease infinite;
  22. }
  23.  
  24. @keyframes bounce {
  25. 50% {
  26. transform: translateY(-50%);
  27. }
  28. 100% {
  29. transform: translateY(0);
  30. }
  31. }
Add Comment
Please, Sign In to add comment