Advertisement
Guest User

Spag Bol CSS

a guest
May 28th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.77 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     cursor: url('orange_pointer.cur'), default;
  5. }
  6.  
  7. body {
  8.     width: 100%;
  9.     background-image: url(images/cloth.png);
  10.     background-size: cover;
  11. }
  12.  
  13. .tagline {
  14.     position: relative;
  15.     padding-top: 75px;
  16.     text-align: center;
  17.     font-family: "Luckiest Guy", sans-serif;
  18.     font-size: 37px;
  19.     letter-spacing: 2px;
  20.     color: #f58538;
  21.     margin-top: 65px;
  22. }
  23.  
  24. .spagbol {
  25. margin-top: 100px;
  26.   position: relative;
  27.   left: 500px;
  28.   -webkit-animation: slideOut 1s forwards;
  29.   -moz-animation: slideOut 1s forwards;
  30.   animation: slideOut 1s forwards;
  31.     animation-delay: 4s;
  32.    
  33. }
  34.  
  35. @keyframes slideOut {
  36.     from{
  37.     transform: translateX(0);
  38.   }
  39.    
  40.   to{
  41.     transform: translateX(2000px);
  42.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement