Advertisement
Staninna

background

Feb 13th, 2022
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1.  
  2.  ​body {
  3.  ​    ​width​:​ ​100​%​;
  4.  ​    ​height​:​ ​100​%​;
  5.  ​    ​background:​ ​linear-gradient​(​-45​deg​,​ ​#​ee7752​,​ ​#​e73c7e​,​ ​#​23a6d5​,​ ​#​23d5ab​);
  6.  ​    ​background-size​:​ ​400​%​ ​400​%​;
  7.  ​    ​animation​:​ gradient ​10​s​ ease infinite;
  8.  ​}
  9.  
  10.  ​@keyframes​ gradient {
  11.  ​    ​0​%​ {
  12.  ​        ​background-position​:​ ​0​%​ ​50​%​;
  13.  ​    }
  14.  ​    ​50​%​ {
  15.  ​        ​background-position​:​ ​100​%​ ​50​%​;
  16.  ​    }
  17.  ​    ​100​%​ {
  18.  ​        ​background-position​:​ ​0​%​ ​50​%​;
  19.  ​    }
  20.  ​}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement