Guest User

Untitled

a guest
Oct 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /* state transitions */
  2.  
  3. /* setup */
  4. body { font:16px Proxima Nova }
  5. #dialog { background:#BBDD49; box-shadow:0 0 15px rgba(0,0,0,.4);
  6. background:linear-gradient(top, #D2EE59, #85B524);
  7. border:3px solid #FFF; border-radius:10px;
  8. position:fixed; display:block; left:50%; top:50%;
  9. margin:-183px auto 0 -266px; padding:15px 20px 20px; width:486px }
  10.  
  11. #dialog .message { background:#F4F4F4; box-shadow:0 0 3px rgba(0, 0, 0, 0.3) inset;
  12. margin:1em 0; border-radius:4px; box-sizing:border-box; overflow:hidden;
  13. padding:1em }
  14.  
  15. /* transitions */
  16. @keyframes showing { from { height:0; padding:0; opacity:0 }}
  17. @keyframes hiding { to { padding:0; height:0; opacity:0 }}
  18.  
  19. .message:first-child { animation:showing 1s 3s alternate infinite }
  20. .message:last-child { animation:hiding 1s 3s alternate infinite }
Add Comment
Please, Sign In to add comment