Advertisement
Guest User

Untitled

a guest
May 31st, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1.  
  2. .container {
  3.     position:relative;
  4.     display:block;
  5.     height:0;
  6.     width:93%;
  7.     padding-bottom:65%;
  8.     background-color: white;
  9.     margin: auto;
  10.     margin-bottom: 5%;
  11.     border-style: solid;
  12.     border-width: 2px;
  13.     border-color: #2C9DE4;
  14.     border-radius: 3%;
  15.     box-shadow: 0px 1px 8px gray;
  16.     -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  17. }
  18.  
  19. .container::after {
  20.    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  21.   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  22.   opacity: 0;
  23. }
  24.  
  25. .container:hover {
  26.   -webkit-transform: scale(1.25, 1.25);
  27.   z-index: 2;
  28. }
  29.  
  30. .container:hover::after{
  31. opacity: 1;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement