Guest User

Untitled

a guest
Oct 23rd, 2014
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.56 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Titan+One);
  2. .tm-countdown {display: none;}
  3. .tm-widget .notification-box {background: none;}
  4. #tnotifier-console {display: none;}
  5.  
  6. /* BODY */
  7. body {
  8.   position: absolute;
  9.   top: 0;
  10.   left: 0;
  11.   right: 0;
  12.   bottom: 0;
  13.   width: 100%;  
  14.   height: 100%;
  15.   background-attachment: fixed;
  16.   background-size: 100% 100%;
  17.   overflow: hidden;
  18.   background: transparent;
  19. }
  20. ::selection {
  21.   background: transparent;
  22. }
  23.  
  24. /* JUMP */
  25. b {
  26.   cursor: default;
  27.   position: absolute;
  28.   top: 30px;
  29.   left: 0;
  30.   right: 0;
  31.   bottom: 0;
  32.   height: 100px;
  33.   margin: auto;
  34.   display: block;
  35.  
  36.   -webkit-animation: bounce .3s ease infinite alternate;
  37.  
  38.   font-family: 'Titan One', cursive;
  39.   font-size: 110px;
  40.   color: #ba;
  41.   text-align: center;
  42.   line-height: 100px;
  43.   text-shadow: 0 1px 0 #CCC,
  44.                0 2px 0 #CCC,
  45.                0 3px 0 #CCC,
  46.                0 4px 0 #CCC,
  47.                0 5px 0 #CCC,
  48.                0 6px 0 transparent,
  49.                0 7px 0 transparent,
  50.                0 8px 0 transparent,
  51.                0 9px 0 transparent,
  52.                0 10px 10px rgba(0, 0, 0, .6);
  53. }
  54. /* ANIMATION */
  55. @-webkit-keyframes bounce {
  56.   100% {
  57.     top: -30px;
  58.    
  59.     text-shadow: 0 1px 0 #CCC,
  60.                  0 2px 0 #CCC,
  61.                  0 3px 0 #CCC,
  62.                  0 4px 0 #CCC,
  63.                  0 5px 0 #CCC,
  64.                  0 6px 0 #CCC,
  65.                  0 7px 0 #CCC,
  66.                  0 8px 0 #CCC,
  67.                  0 9px 0 #CCC,
  68.                  0 30px 30px rgba(0, 0, 0, .3);
  69.   }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment