Guest User

Untitled

a guest
Jun 21st, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. .popup .close {
  2. position: absolute;
  3. top: 70px;
  4. right: 30px;
  5. transition: all 200ms;
  6. font-size: 30px;
  7. font-weight: bold;
  8. text-decoration: none;
  9. color: #333;
  10. }
  11. .popup .close:hover {
  12. color: #06D85F;
  13. }
  14. .popup .content {
  15. max-height: 30%;
  16. overflow: auto;
  17. }
  18.  
  19. <div id="popup1" class="overlay">
  20. <div class="popup">
  21. <a class="close" href="#">&times;</a>
  22. <div class="content">
  23. <img src="./assets/map-overlay.png">
  24. </div>
  25. </div>
  26. </div>
Add Comment
Please, Sign In to add comment