Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <head>
  4. <link href='https://fonts.googleapis.com/css?family=Poller+One' rel='stylesheet' type='text/css'>
  5. <style>
  6. div {
  7.  position:
  8. }
  9. .robot {
  10.  position: relative;
  11.  left: 200px;
  12. }
  13. .beep{
  14.   width: 5px;
  15.   height: 0px;
  16.   border: 5px solid transparent;
  17.   border-top: 10px solid #777;
  18.   border-bottom: 80px solid #888;
  19.   position: relative;
  20.   left: 140px;
  21. }
  22. @keyframes blink {
  23.   0% {
  24.     background: radial-gradient(circle, 15%, transparent 0%), #cc5;  
  25.   }
  26.   50% {
  27.     background: radial-gradient(circle, 15%, transparent 40%), #cc5;  
  28.   }
  29.   100% {
  30.     background: radial-gradient(circle, 15%, transparent 80%), #cc5;  
  31.   }
  32. }
  33. .brain {
  34.   animation: blink .5s infinite;
  35.   background: radial-gradient(circle, white 15%, transparent 40%), #cc5;
  36.   background: -moz-radial-gradient(circle, white 15%, transparent 40%), #cc5;
  37.   background: -webkit-radial-gradient(circle, white 15%, transparent 40%), #cc5;
  38.   background-size: 75px 150px;
  39.   height: 150px;
  40.   width: 150px;
  41.   border-radius: 60px 60px 10px 10px;
  42.   border-bottom: 40px double #666;
  43.   position: relative;
  44.   left: 70px;
  45. }
  46. .torso {
  47.   height: 0;
  48.   width: 140px;
  49.   border-top: 300px solid #bc6;
  50.   border-left: 75px solid transparent;
  51.   border-right: 75px solid transparent;
  52.   border-radius: 20px 20px 100px 100px;
  53. }
  54. .left {
  55.  font-family: 'Poller One', verdana, arial, sans-serif;
  56.  font-weight: bold;
  57.  font-size: 250px;
  58.  color: #666;
  59.  transform: rotate(200deg);
  60.  -webkit-transform: rotate(200deg);
  61.  -moz-transform: rotate(200deg);
  62.  position: relative;
  63.  left: -190px;
  64.  top: -320px;
  65.  z-index: -1;
  66. }
  67.  .right {
  68.   font-family: 'Poller One', verdana, arial, sans-serif;
  69.   font-weight: bold;
  70.   font-size: 250px;
  71.   color: #666;
  72.   transform: scaleY(-1) rotate(20deg);
  73.   -webkit-transform: scaleY(-1) rotate(20deg);
  74.   -moz-transform: scaleY(-1) rotate(20deg);
  75.   position: relative;
  76.   left: 190px;
  77.   top: -620px;
  78.   z-index: -1;
  79. }
  80. .foot {
  81.   height: 40px;
  82.   width: 40px;
  83.   background: #ccc;
  84.   border-radius: 40px;
  85.   border: 15px solid #999;
  86.   position: relative;
  87.   left: 110px;
  88.   top: -10px;
  89. }
  90. </style>
  91. </head>
  92.  
  93. <body>
  94. <div class="robot">
  95.   <div class="beep"></div>
  96.   <div class="brain"></div>
  97.   <div class="torso">
  98.     <div class="left">j</div>
  99.     <div class="right">j</div>
  100.   </div>
  101.   <div class="foot"></div>
  102. </div>
  103. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement