Advertisement
dev_imran

poss.css

Oct 11th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. *{
  2. margin: 0 auto;
  3. font-family: Arial, Helvetica, sans-serif;
  4. }
  5. .poss{
  6. width: 400px;
  7. height: 500px;
  8. position: relative;
  9. margin-top: 60px;
  10. }
  11. .poss img{
  12. width: 100%;
  13. height: 100%;
  14. }
  15. .poss:hover .butn{
  16. visibility: visible;
  17.  
  18. }
  19. .poss:hover .layer{
  20. visibility: visible;
  21. transition: all ease 0.4s;
  22. }
  23. .layer{
  24. width: 100%;
  25. height: 100%;
  26. background: rgba(12, 11, 11, 0.7);
  27. position: absolute;
  28. top: 0px;
  29. visibility: hidden;
  30. }
  31. .butn{
  32. position: absolute;
  33. top: 0px;
  34. top: 228.335px;
  35. left: 130px;
  36. visibility: hidden;
  37. z-index: 2;
  38.  
  39. }
  40. .butn a{
  41. padding: 10px 20px;
  42. background: rgba(216, 178, 9, 0.6);
  43. display: block;
  44. color: rgb(233, 227, 227);
  45. font-size: 20px;
  46. text-decoration: none;
  47. border-radius: 5px;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement