| 1 |
@charset "utf-8"; |
| 2 |
/* CSS Document */ |
| 3 |
.ec_editor_overlay{ |
| 4 |
position: fixed; |
| 5 |
top: 0; |
| 6 |
left: 0; |
| 7 |
width: 100%; |
| 8 |
height: 100%; |
| 9 |
background: rgba(0, 0, 0, 0.6); |
| 10 |
z-index: 99998; |
| 11 |
display:none; |
| 12 |
} |
| 13 |
|
| 14 |
.ec_editor_box_container{ |
| 15 |
-moz-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5); |
| 16 |
-webkit-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5); |
| 17 |
box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5); |
| 18 |
-moz-border-radius: 10px; |
| 19 |
-webkit-border-radius: 10px; |
| 20 |
border-radius: 10px; |
| 21 |
position: fixed; |
| 22 |
top: 15%; |
| 23 |
left: 50%; |
| 24 |
bottom: 15%; |
| 25 |
width: 960px; |
| 26 |
margin: 0 0 0 -480px; |
| 27 |
background: #FFF; |
| 28 |
overflow: auto; |
| 29 |
padding: 61px 0 60px; |
| 30 |
-webkit-box-sizing: border-box; |
| 31 |
-moz-box-sizing: border-box; |
| 32 |
box-sizing: border-box; |
| 33 |
z-index: 100000; |
| 34 |
display:none; |
| 35 |
} |
| 36 |
|
| 37 |
.ec_editor_close{ |
| 38 |
text-decoration: none; |
| 39 |
font-size: 23px; |
| 40 |
color: #fff; |
| 41 |
position: absolute; |
| 42 |
top: 20px; |
| 43 |
right: 16px; |
| 44 |
z-index: 10; |
| 45 |
} |
| 46 |
|
| 47 |
.ec_editor_heading{ |
| 48 |
z-index: 1; |
| 49 |
border-bottom: 1px solid #22648A; |
| 50 |
position: absolute; |
| 51 |
top: 0; |
| 52 |
left: 0; |
| 53 |
width: 100%; |
| 54 |
box-sizing: border-box; |
| 55 |
padding: 25px 50px 20px 36px; |
| 56 |
margin: 0; |
| 57 |
font-size: 22px; |
| 58 |
font-weight: 100; |
| 59 |
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); |
| 60 |
background-color: #2e86b9; |
| 61 |
background-image: -webkit-gradient( |
| 62 |
linear, |
| 63 |
left top, |
| 64 |
left bottom, |
| 65 |
color-stop(0.5, #318EC4), |
| 66 |
color-stop(1, #2E86B9) |
| 67 |
); |
| 68 |
background-image: -o-linear-gradient(bottom, #318EC4 50%, #2E86B9 100%); |
| 69 |
background-image: -moz-linear-gradient(bottom, #318EC4 50%, #2E86B9 100%); |
| 70 |
background-image: -webkit-linear-gradient(bottom, #318EC4 50%, #2E86B9 100%); |
| 71 |
background-image: -ms-linear-gradient(bottom, #318EC4 50%, #2E86B9 100%); |
| 72 |
background-image: linear-gradient(to bottom, #318EC4 50%, #2E86B9 100%); |
| 73 |
color: #fff; |
| 74 |
} |
| 75 |
|
| 76 |
.ec_editor_inner_container{ |
| 77 |
bottom: 0 !important; |
| 78 |
overflow: auto; |
| 79 |
position: absolute; |
| 80 |
width: 100%; |
| 81 |
top: 62px; |
| 82 |
left: 0; |
| 83 |
bottom: 60px; |
| 84 |
-moz-box-sizing: border-box; |
| 85 |
-webkit-box-sizing: border-box; |
| 86 |
box-sizing: border-box; |
| 87 |
padding: 40px; |
| 88 |
} |
| 89 |
|
| 90 |
.ec_column_holder{ |
| 91 |
padding: 0; |
| 92 |
margin: 0; |
| 93 |
list-style: none; |
| 94 |
} |
| 95 |
|
| 96 |
.ec_column_holder li{ |
| 97 |
font-weight: 100; |
| 98 |
border: 1px solid #d9d9d9; |
| 99 |
-moz-border-radius: 4px; |
| 100 |
-webkit-border-radius: 4px; |
| 101 |
border-radius: 4px; |
| 102 |
-webkit-box-shadow: inset 0 1px 0 #fff; |
| 103 |
-moz-box-shadow: inset 0 1px 0 #fff; |
| 104 |
box-shadow: inset 0 1px 0 #fff; |
| 105 |
background: rgb(247,247,247); |
| 106 |
background: -moz-linear-gradient(top, rgba(247,247,247,1) 0%, rgba(237,237,237,1) 100%); |
| 107 |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(237,237,237,1))); |
| 108 |
background: -webkit-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(237,237,237,1) 100%); |
| 109 |
background: -o-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(237,237,237,1) 100%); |
| 110 |
background: -ms-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(237,237,237,1) 100%); |
| 111 |
background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(237,237,237,1) 100%); |
| 112 |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#ededed',GradientType=0 ); |
| 113 |
float: left; |
| 114 |
width: 215px; |
| 115 |
margin: 0 20px 20px 0; |
| 116 |
padding: 25px; |
| 117 |
cursor: pointer; |
| 118 |
} |
| 119 |
|
| 120 |
.ec_column_holder li div{ |
| 121 |
float: left !important; |
| 122 |
width: 210px !important; |
| 123 |
height: 44px; |
| 124 |
background-color: #3dbaaa; |
| 125 |
margin-right: 4%; |
| 126 |
position: relative; |
| 127 |
left: 0; |
| 128 |
color: #FFF; |
| 129 |
font-size: 16px; |
| 130 |
width: 100%; |
| 131 |
text-align: center; |
| 132 |
float:left; |
| 133 |
padding-top:25px; |
| 134 |
} |
| 135 |
|
| 136 |
.ec_editor_panel{ |
| 137 |
display:none; |
| 138 |
} |
| 139 |
|
| 140 |
.ec_editor_error{ |
| 141 |
display: none; |
| 142 |
float: left; |
| 143 |
width: 100%; |
| 144 |
height: 35px; |
| 145 |
line-height: 35px; |
| 146 |
color: #250002; |
| 147 |
background-color: #FFD5D5; |
| 148 |
border-top: 3px solid #D8000C; |
| 149 |
text-shadow: none; |
| 150 |
border-radius: 5px; |
| 151 |
margin-bottom: 15px; |
| 152 |
text-align: center; |
| 153 |
} |
| 154 |
|
| 155 |
.ec_editor_error span{ |
| 156 |
width: 100%; padding: 10px; |
| 157 |
} |
| 158 |
|
| 159 |
.ec_editor_help_text{ |
| 160 |
float:left; width:100%; font-size:12px; font-weight:bold; color:#333; margin-bottom:25px; |
| 161 |
} |
| 162 |
|
| 163 |
.ec_editor_select_row{ |
| 164 |
float:left; width:100%; line-height:45px; |
| 165 |
} |
| 166 |
|
| 167 |
.ec_editor_multiple_select_row{ |
| 168 |
float:left; width:100%; margin-bottom:10px; |
| 169 |
} |
| 170 |
|
| 171 |
.ec_editor_multiple_select_row select{ |
| 172 |
min-width:300px; height:250px !important; |
| 173 |
} |
| 174 |
|
| 175 |
.ec_editor_select_row .ec_editor_select_row_label, .ec_editor_multiple_select_row .ec_editor_select_row_label{ |
| 176 |
width:125px; float:left; |
| 177 |
} |
| 178 |
|
| 179 |
.ec_editor_select_row .ec_editor_select_row_input, .ec_editor_multiple_select_row .ec_editor_select_row_input{ |
| 180 |
float:left; |
| 181 |
} |
| 182 |
|
| 183 |
.ec_editor_select_box{ |
| 184 |
|
| 185 |
} |
| 186 |
|
| 187 |
.ec_editor_input_box{ float:left; margin-top:10px; min-height:28px; } |
| 188 |
|
| 189 |
.ec_editor_submit_row{ |
| 190 |
float:left; width:100%; height:45px; line-height:45px; |
| 191 |
} |
| 192 |
|
| 193 |
.ec_editor_submit_row .ec_editor_select_row_input{ |
| 194 |
float:left; margin-left:125px; |
| 195 |
} |
| 196 |
|
| 197 |
.ec_editor_button{ |
| 198 |
background: #2ea2cc; |
| 199 |
border-color: #0074a2; |
| 200 |
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15); |
| 201 |
box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15); |
| 202 |
color: #fff; |
| 203 |
text-decoration: none; |
| 204 |
vertical-align: top; |
| 205 |
display: inline-block; |
| 206 |
font-size: 13px; |
| 207 |
line-height: 26px; |
| 208 |
height: 28px; |
| 209 |
margin: 0; |
| 210 |
padding: 0 10px 1px; |
| 211 |
cursor: pointer; |
| 212 |
border-width: 1px; |
| 213 |
border-style: solid; |
| 214 |
-webkit-border-radius: 3px; |
| 215 |
-webkit-appearance: none; |
| 216 |
border-radius: 3px; |
| 217 |
white-space: nowrap; |
| 218 |
-webkit-box-sizing: border-box; |
| 219 |
-moz-box-sizing: border-box; |
| 220 |
box-sizing: border-box; |
| 221 |
} |