Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /**
  2. * Basic Hello
  3. */
  4. body{
  5. background: #00f;
  6. background: linear-gradient(90deg, #00f, aqua);
  7. height:100%;
  8. padding:0;
  9. text-align:center;
  10. vertical-align:center;
  11. }
  12. h1{
  13. font-family: Lobster, cursive;
  14. width:100vw;
  15. height:100vh;
  16. color: aliceblue;
  17. font-size:10vh;
  18. animation: rotate 2.5s infinite;
  19. position:absolute;
  20. top:50vh;
  21. bottom:50vh;
  22. left:50vw;
  23. right:50vw;
  24. }
  25. @-webkit-keyframes rotate { from{ -webkit-transform: rotate(0deg); } to{ -webkit-transform: rotate(360deg); }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement