Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.  
  2.  
  3.  
  4. *{
  5.         margin: 0;
  6.         padding: 0;
  7. }
  8.  
  9. body{
  10.         background-color: rgb(4,99,128);
  11. }
  12.  
  13. div.outer{
  14.         width: 220px;
  15.         height: 210px;
  16.         overflow: hidden;
  17.         margin: 100px;
  18. }
  19.  
  20. div.inner{
  21.         width: 140px;
  22.         background-color: rgba(0,0,0,0.7);
  23.         color: rgb(255,255,255);
  24.         text-align: center;
  25.         font-family: sans-serif;
  26.         padding: 15px 20px;
  27.         margin: auto;
  28.         margin-top: 173px;
  29.         transition: margin-top .4s ease-in-out;
  30. }
  31.  
  32. div.inner:hover{
  33.         margin-top: 10px
  34. }