Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. body {
  2.     margin: 0;
  3.     padding: 0;
  4.     font-family: "montserrat";
  5.     background-image: linear-gradient(125deg, #2c3e50, #27ae60, #2980b9, #e74c3c, #8e44ad);
  6.     background-size: 400% 400%;
  7.     animation: bganimation 15s infinite;
  8. }
  9.  
  10. .text {
  11.     color: white;
  12.     text-align: center;
  13.     text-transform: uppercase;
  14.     margin: 350px 0;
  15.     font-size: 22px;
  16. }
  17.  
  18. @keyframes bganimation {
  19.     0% {
  20.         background-position: 0% 50%;
  21.     }
  22.     50% {
  23.         background-position: 100% 50%;
  24.     }
  25.     100% {
  26.         background-position: 0% 50%;
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement