forked from WangJia-mm/JavaScript201708
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3-1.css
More file actions
46 lines (40 loc) · 784 Bytes
/
3-1.css
File metadata and controls
46 lines (40 loc) · 784 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
html, body {
width: 100%;
height: 1000%;
background: -webkit-linear-gradient(top left, lightsalmon, lightpink, lightcoral, lightblue);
}
.dialogBg {
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
height: 100%;
background: #000;
opacity: 0.5;
filter: alpha(opacity=50);
}
.dialog {
display: none;
position: fixed;
top: 50%;
left: 50%;
z-index: 2000;
/*margin: -200px 0 0 -250px;
width: 500px;
height: 400px;*/
margin: 0;
width: 0;
height: 0;
opacity: 0;
filter: alpha(opacity=0);
background: #FFF;
border-radius: 10px;
overflow: hidden;
}
.dialog input[type='button'] {
display: block;
width: 100px;
line-height: 35px;
}