Advertisement
dysphafiz_

Untitled

Sep 10th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1. .bgtest {
  2.     background: linear-gradient(45deg, #f22613, #f89406, #26a65b, #5868ec, #f54e80, #f7ca18, #d2527f);
  3.     background-size: 500% 500%;
  4.     -webkit-animation: ignielGradient 12s ease infinite;
  5.     -moz-animation: ignielGradient 12s ease infinite;
  6.     animation: ignielGradient 12s ease infinite;
  7. }
  8. @-webkit-keyframes ignielGradient {
  9.     0%{background-position: 0% 50%}
  10.     50%{background-position: 100% 50%}
  11.     100%{background-position: 0% 50%}
  12. }
  13. @-moz-keyframes ignielGradient {
  14.     0%{background-position: 0% 50%}
  15.     50%{background-position: 100% 50%}
  16.     100%{background-position: 0% 50%}
  17. }
  18. @keyframes ignielGradient {
  19.     0%{background-position: 0% 50%}
  20.     50%{background-position: 100% 50%}
  21.     100%{background-position: 0% 50%}
  22. }
  23.  
  24. body{
  25.     vertical-align: middle;
  26.     text-align: center;
  27.     font-family: Arial;
  28.     font-size: 26pt;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement