-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
50 lines (47 loc) 路 1019 Bytes
/
Copy pathpopup.css
File metadata and controls
50 lines (47 loc) 路 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
span#popup {
background: transparent;
display: none;
height: 100%;
position: fixed;
text-align: center;
top: 0;
width: 100%;
z-index: 10000;
}
div#popup-content {
background-color: rgb(80, 80, 80);
display: inline-block;
height: auto;
max-width: 551px;
min-height: 100px;
vertical-align: middle;
width: 60%;
margin: 5%;
box-sizing: content-box;
box-shadow: 0 0 20px black;
position: relative;
border-radius: 8px;
padding: 15px 5%;
border: 1px black solid;
}
.popupCloseButton {
background-color: rgb(80, 80, 80);
border: 3px solid #999;
border-radius: 50px;
box-shadow: 0 0 5px black;
cursor: pointer;
display: inline-block;
font-family: arial;
font-weight: bold;
position: absolute;
top: -20px;
right: -20px;
font-size: 25px;
line-height: 30px;
width: 30px;
height: 30px;
text-align: center;
}
.popupCloseButton:hover {
background-color: rgb(100, 100, 100);
}