Huguet57 | ae7b4c2 | 2018-07-23 01:08:23 +0200 | [diff] [blame] | 1 | /* The Modal (background) */
|
| 2 | .modal {
|
| 3 | display: none; /* Hidden by default */
|
| 4 | position: fixed; /* Stay in place */
|
| 5 | z-index: 1; /* Sit on top */
|
| 6 | padding-top: 100px; /* Location of the box */
|
| 7 | left: 0;
|
| 8 | top: 0;
|
| 9 | width: 100%; /* Full width */
|
| 10 | height: 100%; /* Full height */
|
| 11 | overflow: auto; /* Enable scroll if needed */
|
| 12 | background-color: rgb(0,0,0); /* Fallback color */
|
| 13 | background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
| 14 | }
|
| 15 |
|
| 16 | /* Modal Content */
|
| 17 | .modal-content {
|
| 18 | background-color: #fefefe;
|
| 19 | margin: auto;
|
| 20 | padding: 20px;
|
| 21 | border: 1px solid #888;
|
| 22 | width: 80%;
|
| 23 | }
|
| 24 |
|
| 25 | /* The Close Button */
|
| 26 | .closeBox {
|
| 27 | color: #aaaaaa;
|
| 28 | float: right;
|
| 29 | font-size: 28px;
|
| 30 | font-weight: bold;
|
| 31 | }
|
| 32 |
|
| 33 | .closeBox:hover,
|
| 34 | .closeBox:focus {
|
| 35 | color: #000;
|
| 36 | text-decoration: none;
|
| 37 | cursor: pointer;
|
| 38 | } |