popup.css
1.81 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@font-face {
font-family: PFDinTextPro;
font-style: normal;
src: url(../promohero4/fonts/PFDinTextPro-Light.ttf) format('truetype');
}
.popup-box {
position: absolute;
font-family: 'PFDinTextPro', sans-serif;
border-radius: 5px;
background: #fff;
display: none;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
z-index: 9999999;
font-size: 14px;
}
.popup-box .close {
position: absolute;
top: 0px;
right: 0px;
font-family: Helvetica, sans-serif;
font-weight: bold;
cursor: pointer;
color: #434343;
padding: 20px;
font-size: 20px;
}
.popup-box .close:hover {
color: #000;
}
.popup-box h2 {
color: #000;
padding: 0;
margin: 0;
font-size: 18px;
}
.popup-box .top {
padding: 20px;
}
.popup-box .center {
border-top: 1px solid #e5e5e5;
height: 100px;
text-align: center;
}
.popup-box .center ul {
list-style: none;
}
.popup-box .center li {
text-align: center;
width: 300px;
}
.popup-box .bottom {
padding: 20px;
padding-bottom: 0px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.popup-box .btn {
background-color: #00AAF1;
color: #FFF;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0px;
font-size: 14px;
font-weight: 400;
line-height: 1.42857;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-moz-user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.popup-box a.btn {
text-decoration: none;
}
.popup-box .btn span {
padding-left: 5px;
font-weight: bold;
font-size: 12px;
}
#blackout {
background: rgba(0, 0, 0, 0.7);
position: absolute;
top: 0;
overflow: hidden;
z-index: 9999;
left: 0;
display: none;
}