empty
/ * Background Popup */
.popup {
Display: None; / * initially did not appear */
Position: Fixed;
Z-index: 999;
Left: 0;
TOP: 0;
Width: 100%;
Height: 100%;
Background-Color: RGBA (0.0,0,0.0.6);
}
/ * Popup content */
.POPUP-CONTENT {
Position: Relative;
Margin: 10% Auto;
Padding: 0;
Width: 400px;
Background: #fff;
Border-Radius: 8px;
Box-shadow: 0 5px 10px RGBA (0.0,0,0.0.3);
}
/ * Pictures in Popup */
.POPUP-CONTENT IMG {
Width: 100%;
Border-Radius: 8px;
}
/ * Close button */
.close {
Position: Absolute;
TOP: 8PX;
Right: 12px;
font-size: 22px;
font-weight: Bold;
Color: #333;
Cursor: Pointer;
}
×