Guest User

Untitled

a guest
Jul 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. .container{
  2. height:200px;width:400px;
  3. background:#000;
  4. overflow:hidden;
  5. position:relative;
  6. }
  7. .text{
  8. background:rgba(0,0,0,0.5);
  9. top:-70px;
  10. color:white;
  11. font:14px Georgia,serif;
  12. height:auto;width:inherit;
  13. position:absolute;
  14. /* CSS3 Transition Magic */
  15. -webkit-transition: all .5s ease-out;
  16. -moz-transition: all .5s ease-out;
  17. -o-transition: all .5s ease-out;
  18. transition: all .5s ease-out;
  19. }
  20. .text a{
  21. color:#fff;
  22. display:block;
  23. padding:15px;
  24. text-decoration:none;
  25. /* CSS3 Transition Magic */
  26. -webkit-transition: all .4s ease-out;
  27. -moz-transition: all .4s ease-out;
  28. -o-transition: all .5s ease-out;
  29. transition: all .4s ease-out;
  30. }
  31. .text a:hover{
  32. color:red;
  33. text-decoration:none;
  34. }
  35. .container:hover .text{
  36. top:0;
  37. }
Add Comment
Please, Sign In to add comment