Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. .modal .close {
  2.     right: 8px;
  3.     top: 9px;
  4.     display: block;
  5.     margin: -25px -25px 0 0;
  6.     right: 0;
  7.     background-color: #000;
  8.     border-radius: 20px;
  9.     border: 0px solid #9A9FA2;
  10.     width: 23px;
  11.     height: 23px;
  12.     background: url(../img/pop-up-close-btn.png) no-repeat 3px 3px rgba(255, 255, 255, 0.95);
  13.     background-size: 75% 75%;
  14.     cursor: pointer;
  15.     position: absolute;
  16. }
  17.  
  18. .modal .close:before {
  19.     content: '';
  20.     position: relative;
  21.     border-style: solid;
  22.     display: block;
  23.     left: -3px;
  24.     top: -3px;
  25.     border-radius: 20px;
  26.     width: 22px;
  27.     height: 22px;
  28.     border-width: 4px;
  29.     border-color: rgba(192, 192, 192, 0.9);
  30.     background: none;
  31.     pointer-events: none;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement