-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpnext.utils.css
119 lines (111 loc) · 2.59 KB
/
pnext.utils.css
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
.pn-modal-overlay{
background: #fff;
background: rgba(0,0,0,0.5);
position: fixed;
left:0;
right:0;
top:0;
bottom:0;
z-index: 999991;
}
.pn-modal{
position:fixed;
width: 300px;
max-height:500px;
margin: 0;
top:50px;
left: 50%;
margin:0 0 0 -150px;
border-radius: 5px;
background: #ffffff;
z-index:999992;
-webkit-box-shadow: 0px 5px 8px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 8px -3px rgba(0,0,0,0.75);
box-shadow: 0px 5px 8px -3px rgba(0,0,0,0.75);
}
.pn-modal.medium{
width: 500px;
margin-left: -250px;
}
.pn-modal.large{
width: 700px;
margin-left: -350px;
}
.pn-modal .pn-modal-wrap{
x-padding:15px;
position:relative;
}
.pn-modal-wrap .pn-modal-hd{
padding:10px 0;
margin:0 15px 5px 15px;
border-bottom:1px solid #eaeaea;
font-size:13px;
font-weight:bold;
}
.pn-modal-wrap .pn-modal-bd{
padding:5px 15px;
margin-bottom: 10px;
max-height:340px;
overflow: auto;
}
.pn-modal-wrap .pn-modal-ft{
background: #f2f2f2;
padding:10px 15px;
border-top:1px solid #e4e4e4;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.pn-modal .pn-modal-wrap .pn-modal-ft a{
position: static;
display:inline-block;
width:auto;
padding: 5px 10px;
border-radius: 3px;
background: #9a9da5;
color:#ffffff;
font-size:12px;
font-weight:normal;
text-shadow: 0px 1px 0px rgba(0,0,0,0.25);
}
.pn-modal .pn-modal-wrap .pn-modal-ft a + a{margin-left:5px;}
.pn-modal .pn-modal-wrap .pn-modal-ft a.primary{
background: #31b4ed;
}
.pn-modal-wrap a.pn-modal-close{
position:absolute;
right:5px;
top:8px;
font-size:15px;
display:block;
color:#888888;
width:20px;
height:20px;
font-weight:normal;
line-height:20px;
vertical-align:middle;
text-align:center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
/* styles for the iframe that may get used in the modal */
.pn-modal-wrap .pn-modal-bd iframe{
margin: 0;
padding: 0;
border: none;
width: 100%;
min-height:250px;
}
/* general styling for element in the bd section */
.pn-modal .pn-modal-bd h1 .pn-modal .pn-modal-bd h2, .pn-modal .pn-modal-bd h3, .pn-modal .pn-modal-bd h4, .pn-modal .pn-modal-bd h5, .pn-modal .pn-modal-bd h6, .pn-modal .pn-modal-bd p, .pn-modal .pn-modal-bd ul, .pn-modal .pn-modal-bd ol{
margin:0 0 15px 0;
}
.pn-modal .pn-modal-bd h1{font-size:17px;}
.pn-modal .pn-modal-bd h2{font-size:16px;}
.pn-modal .pn-modal-bd h3{font-size:15px;}
.pn-modal .pn-modal-bd h4{font-size:14px;}
.pn-modal .pn-modal-bd h5{font-size:13px;}
.pn-modal .pn-modal-bd h6, .pn-modal .pn-modal-bd p, .pn-modal .pn-modal-bd ul, .pn-modal .pn-modal-bd ol{
font-size:12px;
font-weight:normal;
}