Advertisement
swimmerbhs

style.css

Feb 19th, 2025
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | None | 0 0
  1. /* Modal styles */
  2. .modal {
  3.     display: none;
  4.     position: fixed;
  5.     z-index: 1;
  6.     left: 0;
  7.     top: 0;
  8.     width: 100%;
  9.     height: 100%;
  10.     overflow: auto;
  11.     background-color: rgb(0,0,0);
  12.     background-color: rgba(0,0,0,0.4);
  13. }
  14.  
  15. .modal-content {
  16.     background-color: #fefefe;
  17.     margin: 15% auto;
  18.     padding: 20px;
  19.     border: 1px solid #888;
  20.     width: 80%;
  21. }
  22.  
  23. .close {
  24.     color: #aaa;
  25.     float: right;
  26.     font-size: 28px;
  27.     font-weight: bold;
  28. }
  29.  
  30. .close:hover,
  31. .close:focus {
  32.     color: black;
  33.     text-decoration: none;
  34.     cursor: pointer;
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement