Advertisement
nocturnalmk

attendant overlay

Jul 2nd, 2014
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. .attendant {
  2.     display: inline-block;
  3.     position:relative;
  4.     overflow:hidden;
  5.     background-color: red;
  6. }
  7.  
  8. .attendant > img {
  9.     width: 100%;
  10.     height: 100%;
  11. }
  12.  
  13. .delete-attendant {
  14.     position:absolute;
  15.     top:0;
  16.     right:0;
  17.     background:rgba(90, 90, 90, 0.75);
  18.     width: 100%;
  19.     height: 100%;
  20.  
  21.     display: none;
  22.     text-align: start;
  23.     color:#fff !important;
  24.     z-index:2;
  25. }
  26.  
  27. .caption-content {
  28.     vertical-align: middle;
  29.     width: 90%;
  30.     height: 90%;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement