| 1 |
/* Check box */ |
| 2 |
.htoptions_element_checkbox label { |
| 3 |
padding: 2px; |
| 4 |
width: 43px; |
| 5 |
height: 15px; |
| 6 |
background-color: #2c3e50; |
| 7 |
border-radius: 60px; |
| 8 |
-webkit-transition: background 0.2s; |
| 9 |
transition: background 0.2s; |
| 10 |
position: relative; |
| 11 |
text-indent: -99999px; |
| 12 |
} |
| 13 |
.htoptions_element_checkbox label::before { |
| 14 |
content: ""; |
| 15 |
position: absolute; |
| 16 |
top: 2px; |
| 17 |
left: 2px; |
| 18 |
bottom: 2px; |
| 19 |
right: 2px; |
| 20 |
background-color: #ffffff; |
| 21 |
border-radius: 10px; |
| 22 |
-webkit-transition: background 0.2s; |
| 23 |
transition: background 0.2s; |
| 24 |
} |
| 25 |
.htoptions_element_checkbox label::after { |
| 26 |
content: ""; |
| 27 |
position: absolute; |
| 28 |
top: 3px; |
| 29 |
left: 3px; |
| 30 |
bottom: 3px; |
| 31 |
width: 18px; |
| 32 |
background-color: #2c3e50; |
| 33 |
border-radius: 10px; |
| 34 |
-webkit-transition: margin 0.2s, background 0.2s; |
| 35 |
transition: margin 0.2s, background 0.2s; |
| 36 |
} |
| 37 |
.htoptions_element_checkbox input { |
| 38 |
opacity: 0 !important; |
| 39 |
width: 0; |
| 40 |
height: 0; |
| 41 |
position: absolute; |
| 42 |
} |
| 43 |
.htoptions_element_checkbox input:checked + label { |
| 44 |
background-color: #22b9ff; |
| 45 |
} |
| 46 |
.htoptions_element_checkbox input:checked + label::after { |
| 47 |
background-color: #22b9ff; |
| 48 |
margin-left: 23px; |
| 49 |
} |
| 50 |
|
| 51 |
/* Element Table Row */ |
| 52 |
#htbuilder_element_tabs h2{ |
| 53 |
display: none; |
| 54 |
} |
| 55 |
#htbuilder_element_tabs table tr { |
| 56 |
border: 1px solid #ddd; |
| 57 |
box-sizing: border-box; |
| 58 |
float: left; |
| 59 |
margin-bottom: 5px; |
| 60 |
margin-right: 5px; |
| 61 |
padding: 0 20px; |
| 62 |
} |
| 63 |
#htbuilder_element_tabs table tr th{ |
| 64 |
width: 250px; |
| 65 |
} |
| 66 |
.open-element-toggle { |
| 67 |
background: #2c3e50 none repeat scroll 0 0; |
| 68 |
border: 1px solid #2c3e50; |
| 69 |
color: #fff; |
| 70 |
cursor: pointer; |
| 71 |
display: inline-block; |
| 72 |
margin: 10px 0; |
| 73 |
padding: 5px 10px; |
| 74 |
transition: 0.4s; |
| 75 |
} |
| 76 |
.open-element-toggle:hover{ |
| 77 |
background: #22b9ff none repeat scroll 0 0; |
| 78 |
border-color: #22b9ff; |
| 79 |
} |
| 80 |
|
| 81 |
/* PopUp Notice */ |
| 82 |
.htdialog-content{ |
| 83 |
text-align: center; |
| 84 |
} |
| 85 |
.htdialog-content > p { |
| 86 |
font-size: 20px; |
| 87 |
} |
| 88 |
.htdialog-content > span i { |
| 89 |
font-size: 30px; |
| 90 |
} |
| 91 |
.htbuilder_table_row.pro span { |
| 92 |
color: #FF0000; |
| 93 |
} |
| 94 |
|
| 95 |
/* Options Page Notice */ |
| 96 |
#htbuilder_general_tabs{} |
| 97 |
#htbuilder_general_tabs .htbuilder-submit-button,#htbuilder_general_tabs h2,#htbuilder_plugins_tabs .htbuilder-submit-button,#htbuilder_template_tabs h2{ |
| 98 |
display: none; |
| 99 |
} |
| 100 |
.htbuilder-document-section { |
| 101 |
margin-top: 25px; |
| 102 |
overflow: hidden; |
| 103 |
} |
| 104 |
.htbuilder-column { |
| 105 |
float: left; |
| 106 |
padding: 0 15px; |
| 107 |
} |
| 108 |
.htbuilder-section-title { |
| 109 |
font-size: 20px; |
| 110 |
padding-left: 15px; |
| 111 |
} |
| 112 |
.features-list-area { |
| 113 |
border: 1px solid #ddd; |
| 114 |
float: left; |
| 115 |
margin: 0 15px; |
| 116 |
padding: 0 15px; |
| 117 |
} |
| 118 |
.features-list-area li { |
| 119 |
font-size: 16px; |
| 120 |
padding: 4px 0 4px 5px; |
| 121 |
position: relative; |
| 122 |
} |
| 123 |
.features-list-area li::before { |
| 124 |
content: "� |
| 125 |
�"; |
| 126 |
font-family: dashicons; |
| 127 |
left: -5px; |
| 128 |
position: relative; |
| 129 |
top: 2px; |
| 130 |
} |
| 131 |
.features-list-area li.htdel::before { |
| 132 |
content: ""; |
| 133 |
} |
| 134 |
.htbuilder-admin-row .features-list-area .button { |
| 135 |
margin-bottom: 20px; |
| 136 |
} |
| 137 |
#htbuilder_templatebuilder_tabs .description span { |
| 138 |
color: #ff0000; |
| 139 |
} |
| 140 |
.htoptions-plugins-row * { |
| 141 |
box-sizing: border-box; |
| 142 |
} |
| 143 |
.htoptions-plugins-row { |
| 144 |
display: flex; |
| 145 |
flex-flow: row wrap; |
| 146 |
margin-left: -15px; |
| 147 |
overflow: hidden; |
| 148 |
} |
| 149 |
.htoptions-single-plugins { |
| 150 |
float: left; |
| 151 |
margin-bottom: 30px; |
| 152 |
padding: 0 15px; |
| 153 |
width: 25%; |
| 154 |
} |
| 155 |
.htoptions-single-plugins img { |
| 156 |
width: 100%; |
| 157 |
} |
| 158 |
.htoptions-single-plugins a{ |
| 159 |
text-decoration: none; |
| 160 |
} |
| 161 |
.htoptions-button { |
| 162 |
border: 1px solid #ccc; |
| 163 |
color: #23282d; |
| 164 |
display: inline-block; |
| 165 |
padding: 7px 20px; |
| 166 |
text-decoration: none; |
| 167 |
transition: all 0.4s ease 0s; |
| 168 |
} |
| 169 |
.htoptions-button:hover { |
| 170 |
background: #0085ba none repeat scroll 0 0; |
| 171 |
border-color: #0085ba; |
| 172 |
color: #fff; |
| 173 |
} |
| 174 |
.htfree-plugins .htoptions-plugins-content { |
| 175 |
float: left; |
| 176 |
padding-left: 25px; |
| 177 |
width: calc(100% - 125px); |
| 178 |
} |
| 179 |
.htoptions-img { |
| 180 |
float: left; |
| 181 |
width: 125px; |
| 182 |
} |
| 183 |
|
| 184 |
|
| 185 |
/* |
| 186 |
* Template Laibrary Start |
| 187 |
*/ |
| 188 |
.httemplate-row{} |
| 189 |
|
| 190 |
/* Top bar */ |
| 191 |
.httemplate-top-banner-area { |
| 192 |
background: #22b9ff none repeat scroll 0 0; |
| 193 |
margin-right: 15px; |
| 194 |
margin-top: 20px; |
| 195 |
padding: 20px; |
| 196 |
} |
| 197 |
.htbanner-content { |
| 198 |
align-items: center; |
| 199 |
display: flex; |
| 200 |
justify-content: space-between; |
| 201 |
flex-flow: row wrap; |
| 202 |
} |
| 203 |
.htbanner-content h3{ |
| 204 |
margin: 0; |
| 205 |
color: #fff; |
| 206 |
line-height: 24px; |
| 207 |
} |
| 208 |
.htbanner-content a { |
| 209 |
background: #d30c5c none repeat scroll 0 0; |
| 210 |
border: 1px solid transparent; |
| 211 |
border-radius: 3px; |
| 212 |
color: #fff; |
| 213 |
display: inline-block; |
| 214 |
font-size: 14px; |
| 215 |
font-weight: 600; |
| 216 |
padding: 8px 15px; |
| 217 |
text-decoration: none; |
| 218 |
transition: all 0.4s ease 0s; |
| 219 |
} |
| 220 |
.htbanner-content a:hover{ |
| 221 |
background: #fff; |
| 222 |
border-color: #333; |
| 223 |
color: #333; |
| 224 |
} |
| 225 |
.htbanner-desc p { |
| 226 |
color: #fff; |
| 227 |
font-weight: 600; |
| 228 |
margin: 5px 0 0; |
| 229 |
} |
| 230 |
|
| 231 |
/* Tab panel */ |
| 232 |
.htbuilder-admin-tab-pane{ |
| 233 |
display: none; |
| 234 |
} |
| 235 |
.htbuilder-admin-tab-pane.httabactive{ |
| 236 |
display: block; |
| 237 |
} |
| 238 |
.httemplate-row .htbuilder-admin-tab-pane{ |
| 239 |
margin-left: -15px; |
| 240 |
overflow: hidden; |
| 241 |
} |
| 242 |
.htbuilder-admin-tabs li{ |
| 243 |
display: inline-block; |
| 244 |
margin-right: 15px; |
| 245 |
} |
| 246 |
.htbuilder-admin-tabs li:last-child{ |
| 247 |
margin-right: 0; |
| 248 |
} |
| 249 |
.httemplate-row .htbuilder-admin-tabs li a { |
| 250 |
background: #428bfa none repeat scroll 0 0; |
| 251 |
border-radius: 3px; |
| 252 |
color: #fff; |
| 253 |
display: block; |
| 254 |
font-weight: 600; |
| 255 |
padding: 8px 20px; |
| 256 |
text-decoration: none; |
| 257 |
text-transform: uppercase; |
| 258 |
transition: all 0.4s ease 0s; |
| 259 |
border: none; |
| 260 |
} |
| 261 |
.httemplate-row .htbuilder-admin-tabs li a:focus{ |
| 262 |
box-shadow: none; |
| 263 |
} |
| 264 |
.httemplate-row .htbuilder-admin-tabs li a:hover, .httemplate-row .htbuilder-admin-tabs li a.httabactive{ |
| 265 |
background: #d30c5c; |
| 266 |
border-color: #d30c5c; |
| 267 |
} |
| 268 |
.htbuilder-admin-tab-area { |
| 269 |
margin: 20px 0 15px; |
| 270 |
} |
| 271 |
|
| 272 |
#tp-grid { |
| 273 |
margin-left: 0 !important; |
| 274 |
margin-top: 35px !important; |
| 275 |
} |
| 276 |
.tp-grid{ |
| 277 |
overflow: hidden !important; |
| 278 |
} |
| 279 |
#tp-grid li { |
| 280 |
width: 20% !important; |
| 281 |
} |
| 282 |
#htbuilder-tmp-name { |
| 283 |
text-transform: uppercase; |
| 284 |
} |
| 285 |
.tp-grid .httemplate-action{ |
| 286 |
display: none; |
| 287 |
} |
| 288 |
|
| 289 |
.htpackage-tp-title { |
| 290 |
background: #fff; |
| 291 |
display: block; |
| 292 |
width: 100%; |
| 293 |
padding: 15px; |
| 294 |
position: absolute; |
| 295 |
bottom: 15px; |
| 296 |
left: 0; |
| 297 |
box-sizing: border-box; |
| 298 |
text-align: center; |
| 299 |
} |
| 300 |
.htpackage-tp-title h3{ |
| 301 |
text-transform: capitalize; |
| 302 |
font-size: 16px; |
| 303 |
font-weight: 700; |
| 304 |
color: #000; |
| 305 |
margin: 0; |
| 306 |
} |
| 307 |
.htpackage-tp-title p { |
| 308 |
margin: 5px 0 0; |
| 309 |
} |
| 310 |
.htpackage-tp-title span { |
| 311 |
margin-right: 5px; |
| 312 |
} |
| 313 |
|
| 314 |
.htbuilder-loader { |
| 315 |
text-align: center; |
| 316 |
} |
| 317 |
#htbuilderclose { |
| 318 |
cursor: pointer; |
| 319 |
font-size: 16px; |
| 320 |
display: none; |
| 321 |
transition: 0.4s; |
| 322 |
} |
| 323 |
#htbuilderclose:hover{ |
| 324 |
color: #d30c5c; |
| 325 |
} |
| 326 |
.htbuilder-topbar { |
| 327 |
display: none; |
| 328 |
justify-content: space-between; |
| 329 |
margin-right: 15px; |
| 330 |
align-items: center; |
| 331 |
background: #fff; |
| 332 |
padding: 15px 16px; |
| 333 |
} |
| 334 |
.htbuilder-topbar h3{ |
| 335 |
margin: 0; |
| 336 |
} |
| 337 |
|
| 338 |
.httemplate-row .htsingle-templates-laibrary { |
| 339 |
float: left; |
| 340 |
margin-bottom: 30px; |
| 341 |
padding: 0 15px; |
| 342 |
width: 100%; |
| 343 |
} |
| 344 |
.httemplate-row .htsingle-templates-laibrary img{ |
| 345 |
width: 100%; |
| 346 |
} |
| 347 |
.httemplate-row .tp-open .htsingle-templates-laibrary img{ |
| 348 |
margin-top: 15px; |
| 349 |
} |
| 350 |
.httemplate-row .tp-open .htsingle-templates-laibrary .httemplate-tags{ |
| 351 |
display: none; |
| 352 |
} |
| 353 |
.httemplate-thumbnails { |
| 354 |
overflow: hidden; |
| 355 |
position: relative; |
| 356 |
} |
| 357 |
.httemplate-content { |
| 358 |
background: #fff none repeat scroll 0 0; |
| 359 |
padding: 15px; |
| 360 |
text-align: center; |
| 361 |
} |
| 362 |
.httemplate-content h3 { |
| 363 |
font-size: 16px; |
| 364 |
margin: 0; |
| 365 |
} |
| 366 |
.httemplate-content span { |
| 367 |
color: red; |
| 368 |
display: none; |
| 369 |
} |
| 370 |
.httemplate-tags { |
| 371 |
color: #888; |
| 372 |
margin-top: 5px; |
| 373 |
} |
| 374 |
|
| 375 |
.httemplate-action { |
| 376 |
background: #333 none repeat scroll 0 0; |
| 377 |
bottom: 0; |
| 378 |
display: flex; |
| 379 |
flex-wrap: wrap; |
| 380 |
justify-content: space-between; |
| 381 |
left: 0; |
| 382 |
position: absolute; |
| 383 |
right: 0; |
| 384 |
z-index: 2; |
| 385 |
transition: 0.4s; |
| 386 |
} |
| 387 |
.httemplate-row .htsingle-templates-laibrary *, .httemplate-row .htsingle-templates-laibrary *::after, .httemplate-row .htsingle-templates-laibrary *::before,.httemplate-row .htsingle-templates-laibrary { |
| 388 |
box-sizing: border-box; |
| 389 |
} |
| 390 |
.httemplate-action a { |
| 391 |
color: #fff; |
| 392 |
flex: 0 0 50%; |
| 393 |
font-size: 14px; |
| 394 |
padding: 12px 20px; |
| 395 |
text-align: center; |
| 396 |
text-decoration: none; |
| 397 |
transition: all 0.4s ease 0s; |
| 398 |
} |
| 399 |
.httemplate-action a:first-child:not(:last-child) { |
| 400 |
border-right: 1px solid rgba(255,255,255, 0.2); |
| 401 |
} |
| 402 |
.httemplate-action a:hover{ |
| 403 |
background: #0085ba none repeat scroll 0 0; |
| 404 |
} |
| 405 |
|
| 406 |
/*Pop Up*/ |
| 407 |
.httemplate-popupcontent { |
| 408 |
align-items: center; |
| 409 |
display: flex; |
| 410 |
justify-content: center; |
| 411 |
min-height: 200px; |
| 412 |
position: relative; |
| 413 |
} |
| 414 |
.htspinner { |
| 415 |
height: 100%; |
| 416 |
left: 0; |
| 417 |
position: absolute; |
| 418 |
top: 0; |
| 419 |
width: 100%; |
| 420 |
display: none; |
| 421 |
} |
| 422 |
.htspinner.loading{ |
| 423 |
display: block; |
| 424 |
} |
| 425 |
.htspinner::before { |
| 426 |
background: rgba(0, 0, 0, 0) url("../images/ajax-loader.gif") no-repeat scroll center center / 100px 100px; |
| 427 |
content: ""; |
| 428 |
height: 100%; |
| 429 |
left: 0; |
| 430 |
opacity: 1; |
| 431 |
position: absolute; |
| 432 |
top: 0; |
| 433 |
visibility: visible; |
| 434 |
width: 100%; |
| 435 |
} |
| 436 |
|
| 437 |
.htpopupcontent p,.htmessage p { |
| 438 |
font-size: 18px; |
| 439 |
margin: 0; |
| 440 |
} |
| 441 |
.htimpbtn,.htmessage a { |
| 442 |
background: #333 none repeat scroll 0 0; |
| 443 |
color: #fff; |
| 444 |
display: inline-block; |
| 445 |
font-size: 14px; |
| 446 |
margin: 15px 0; |
| 447 |
padding: 10px 20px; |
| 448 |
text-align: center; |
| 449 |
text-decoration: none; |
| 450 |
transition: all 0.4s ease 0s; |
| 451 |
} |
| 452 |
.htimpbtn:focus{ |
| 453 |
background: #333 none repeat scroll 0 0; |
| 454 |
outline: none; |
| 455 |
color: #fff; |
| 456 |
box-shadow: none; |
| 457 |
} |
| 458 |
.htimpbtn:hover,.htmessage a:hover{ |
| 459 |
background: #0085ba none repeat scroll 0 0; |
| 460 |
color: #fff; |
| 461 |
outline:none; |
| 462 |
} |
| 463 |
|
| 464 |
.htpageimportarea .htimpbtn{ |
| 465 |
margin: 0; |
| 466 |
} |
| 467 |
.htpageimportarea { |
| 468 |
margin: 0 0 15px; |
| 469 |
} |
| 470 |
.htpageimportarea p{ |
| 471 |
margin-bottom: 15px; |
| 472 |
} |
| 473 |
.htpageimportarea input { |
| 474 |
background: #fff none repeat scroll 0 0; |
| 475 |
border: 1px solid #c7c7c7; |
| 476 |
color: #888888; |
| 477 |
font-size: 14px; |
| 478 |
font-weight: normal; |
| 479 |
padding: 8px 10px; |
| 480 |
width: 250px; |
| 481 |
} |
| 482 |
.htimpbtn.htdisabled { |
| 483 |
cursor: default; |
| 484 |
opacity: 0.4; |
| 485 |
pointer-events: none; |
| 486 |
} |
| 487 |
.htmessage { |
| 488 |
text-align: center; |
| 489 |
} |