transferito-font.css
4 years ago
transferito-styles.min.css
1 year ago
transferito-styles.min.css.map
1 year ago
transferito.css
3 years ago
transferito.css
1272 lines
| 1 | /** Notice CSS **/ |
| 2 | .notice-transferito-title { |
| 3 | margin-bottom: 0.4em; |
| 4 | font-size: 1.2em; |
| 5 | } |
| 6 | |
| 7 | .notice-base-transferito { |
| 8 | /*border-left-color: #2a77ff;*/ |
| 9 | margin-top: 25px!important; |
| 10 | } |
| 11 | |
| 12 | /** Form CSS **/ |
| 13 | |
| 14 | .transferito__cpanel-form { |
| 15 | width: 600px; |
| 16 | } |
| 17 | |
| 18 | .transferito-setting_form .form-table { |
| 19 | margin-bottom: 20px; |
| 20 | } |
| 21 | |
| 22 | .transferito-setting_form .form-table th { |
| 23 | width: 130px; |
| 24 | padding-top: 24px; |
| 25 | padding-bottom: 0; |
| 26 | } |
| 27 | |
| 28 | .transferito-setting_form .form-table td { |
| 29 | padding-bottom: 0; |
| 30 | margin-bottom: 0; |
| 31 | } |
| 32 | |
| 33 | .transferito-input { |
| 34 | width: 100%; |
| 35 | max-width: 500px; |
| 36 | font-weight: normal; |
| 37 | height: 35px!important; |
| 38 | padding: 5px 10px!important; |
| 39 | } |
| 40 | |
| 41 | .transferito-input__select { |
| 42 | width: 100%; |
| 43 | max-width: 100%!important; |
| 44 | font-size: 17px!important; |
| 45 | } |
| 46 | |
| 47 | .transferito-input--large { |
| 48 | width: 100%; |
| 49 | max-width: 100%; |
| 50 | height: auto!important; |
| 51 | font-size: 18px; |
| 52 | text-align: center; |
| 53 | padding: 9px!important; |
| 54 | font-weight: 500; |
| 55 | } |
| 56 | |
| 57 | .transferito-input--large::-webkit-input-placeholder { /* Chrome/Opera/Safari */ |
| 58 | color: #dedede; |
| 59 | } |
| 60 | .transferito-input--large::-moz-placeholder { /* Firefox 19+ */ |
| 61 | color: #dedede; |
| 62 | } |
| 63 | .transferito-input--large:-ms-input-placeholder { /* IE 10+ */ |
| 64 | color: #dedede; |
| 65 | } |
| 66 | .transferito-input--large:-moz-placeholder { /* Firefox 18- */ |
| 67 | color: #dedede; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | .transferito-input--error::after { |
| 72 | content: 'REQUIRED'; |
| 73 | position: relative; |
| 74 | float: right; |
| 75 | right: 55px; |
| 76 | height: auto; |
| 77 | background: red; |
| 78 | padding: 5px 13px; |
| 79 | color: white; |
| 80 | margin-top: -40px; |
| 81 | font-size: 11px; |
| 82 | font-weight: 700; |
| 83 | border-radius: 3px; |
| 84 | } |
| 85 | |
| 86 | .transferito-input__info { |
| 87 | border: 1px solid #cecece; |
| 88 | background: #f2f2f2; |
| 89 | padding: 12px 10px; |
| 90 | margin-left: 1px; |
| 91 | max-width: 478px; |
| 92 | margin-bottom: -1px; |
| 93 | font-weight: 500; |
| 94 | color: #616161ce; |
| 95 | } |
| 96 | |
| 97 | .transferito-input__info--error { |
| 98 | background: #ffe0de; |
| 99 | color: red; |
| 100 | border: 1px solid red; |
| 101 | margin-top: 10px; |
| 102 | border-radius: 3px; |
| 103 | } |
| 104 | |
| 105 | .transferito-input__holder { |
| 106 | position: relative; |
| 107 | } |
| 108 | |
| 109 | .transferito-input__info--larger-row.transferito-input--error::after { |
| 110 | margin-top: -98px; |
| 111 | } |
| 112 | |
| 113 | .transferito-input__info--push-down-row.transferito-input--error::after { |
| 114 | margin-top: -14px; |
| 115 | height: 16px; |
| 116 | right: 92px; |
| 117 | } |
| 118 | |
| 119 | .transferito-input--disabled { |
| 120 | background: #f1f1f1!important; |
| 121 | } |
| 122 | |
| 123 | .transferito-checkbox_label { |
| 124 | margin-top: 11px!important; |
| 125 | display: block; |
| 126 | } |
| 127 | .transferito-checkbox { |
| 128 | margin-right: 8px!important; |
| 129 | } |
| 130 | |
| 131 | .transfer-block { |
| 132 | width: 100%; |
| 133 | } |
| 134 | |
| 135 | .transferito__block--center { |
| 136 | display: -webkit-box; |
| 137 | display: -moz-box; |
| 138 | display: -ms-flexbox; |
| 139 | display: -webkit-flex; |
| 140 | display: flex; |
| 141 | align-items: center; |
| 142 | justify-content: center; |
| 143 | } |
| 144 | |
| 145 | .transferito__block--align { |
| 146 | display: flex; |
| 147 | justify-content: space-between; |
| 148 | align-items: flex-start; |
| 149 | } |
| 150 | |
| 151 | .separate-block-line { |
| 152 | border-bottom: 1px solid #dbdbdb; |
| 153 | padding-bottom: 20px; |
| 154 | padding-top: 5px; |
| 155 | } |
| 156 | |
| 157 | .separate-block-line--top { |
| 158 | border-top: 1px solid #f1f1f1; |
| 159 | padding: 20px 0 10px; |
| 160 | } |
| 161 | |
| 162 | .transfer-block h2 { |
| 163 | margin-bottom: 0; |
| 164 | } |
| 165 | |
| 166 | .transfer-block p { |
| 167 | margin-top: 8px; |
| 168 | } |
| 169 | |
| 170 | .selected-folder-container { |
| 171 | width: 350px; |
| 172 | background: #fefefe; |
| 173 | padding: 10px 15px; |
| 174 | border: 1px solid #ddd; |
| 175 | box-shadow: inset 0 1px 2px rgba(0,0,0,.07); |
| 176 | margin-left: 29px; |
| 177 | border-radius: 4px; |
| 178 | } |
| 179 | |
| 180 | .selected-folder-container.white-block { |
| 181 | margin: 0; |
| 182 | width: 100%; |
| 183 | padding: 0; |
| 184 | } |
| 185 | |
| 186 | .selected-folder-container.transfer-progress-block { |
| 187 | margin: 100px auto 0 auto; |
| 188 | width: 80%; |
| 189 | max-width: 450px!important; |
| 190 | } |
| 191 | |
| 192 | .selected-folder-container.migration-overview { |
| 193 | width: 350px; |
| 194 | padding: 0; |
| 195 | } |
| 196 | |
| 197 | .selected-folder-container.migration-screen { |
| 198 | width: 600px; |
| 199 | } |
| 200 | |
| 201 | @media screen and (min-width: 1075px) and (max-width: 1200px) { |
| 202 | .selected-folder-container.migration-overview { |
| 203 | width: 300px; |
| 204 | } |
| 205 | |
| 206 | .selected-folder-container.migration-screen { |
| 207 | width: 550px; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | @media screen and (min-width: 1075px) and (max-width: 1200px) { |
| 212 | .selected-folder-container.migration-overview { |
| 213 | width: 300px; |
| 214 | } |
| 215 | |
| 216 | .selected-folder-container.migration-screen { |
| 217 | width: 550px; |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | @media screen and (max-width: 1201px) { |
| 222 | .transferito__col--full.transferito__col--full-more-padding.transferito__col--directory-selector { |
| 223 | padding: 5px 15px; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | @media screen and (max-width: 1074px) { |
| 228 | .transferito__block--align { |
| 229 | flex-direction: column; |
| 230 | } |
| 231 | |
| 232 | .selected-folder-container.migration-overview { |
| 233 | width: 550px; |
| 234 | margin-left: 0; |
| 235 | } |
| 236 | |
| 237 | .selected-folder-container.migration-screen { |
| 238 | width: 550px; |
| 239 | margin-bottom: 20px!important; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | @media screen and (max-width: 715px) { |
| 244 | .transferito-container.transferito__choices { |
| 245 | width: 100%; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | .selected-folder-container.transfer-progress-block h2 { |
| 250 | margin-bottom: 10px; |
| 251 | } |
| 252 | |
| 253 | .transferito__help-container { |
| 254 | display: flex; |
| 255 | } |
| 256 | |
| 257 | .mb0 { |
| 258 | margin-bottom: 0!important; |
| 259 | } |
| 260 | |
| 261 | .mb5 { |
| 262 | margin-bottom: 5px!important; |
| 263 | } |
| 264 | |
| 265 | .mb10 { |
| 266 | margin-bottom: 10px!important; |
| 267 | } |
| 268 | |
| 269 | .mb15 { |
| 270 | margin-bottom: 15px!important; |
| 271 | } |
| 272 | |
| 273 | .mb20 { |
| 274 | margin-bottom: 20px!important; |
| 275 | } |
| 276 | |
| 277 | .mb30 { |
| 278 | margin-bottom: 30px!important; |
| 279 | } |
| 280 | |
| 281 | .mb40 { |
| 282 | margin-bottom: 40px!important; |
| 283 | } |
| 284 | |
| 285 | .mb45 { |
| 286 | margin-bottom: 45px!important; |
| 287 | } |
| 288 | |
| 289 | .mt0 { |
| 290 | margin-top: 0!important; |
| 291 | } |
| 292 | |
| 293 | .mt5 { |
| 294 | margin-top: 5px!important; |
| 295 | } |
| 296 | |
| 297 | .mt10 { |
| 298 | margin-top: 10px!important; |
| 299 | } |
| 300 | |
| 301 | .mt15 { |
| 302 | margin-top: 15px!important; |
| 303 | } |
| 304 | |
| 305 | .mt20 { |
| 306 | margin-top: 20px!important; |
| 307 | } |
| 308 | |
| 309 | .mt25 { |
| 310 | margin-top: 25px!important; |
| 311 | } |
| 312 | |
| 313 | .mt30 { |
| 314 | margin-top: 30px!important; |
| 315 | } |
| 316 | |
| 317 | .mt40 { |
| 318 | margin-top: 40px!important; |
| 319 | } |
| 320 | |
| 321 | .mt50 { |
| 322 | margin-top: 50px!important; |
| 323 | } |
| 324 | |
| 325 | .mt100 { |
| 326 | margin-top: 100px!important; |
| 327 | } |
| 328 | |
| 329 | .mt200 { |
| 330 | margin-top: 200px!important; |
| 331 | } |
| 332 | |
| 333 | .ml10 { |
| 334 | margin-left: 10px!important; |
| 335 | } |
| 336 | |
| 337 | .ml20 { |
| 338 | margin-left: 20px!important; |
| 339 | } |
| 340 | |
| 341 | .pt0 { |
| 342 | padding-top: 0!important; |
| 343 | } |
| 344 | |
| 345 | .pb10 { |
| 346 | padding-bottom: 10px!important; |
| 347 | } |
| 348 | |
| 349 | .pb20 { |
| 350 | padding-bottom: 20px!important; |
| 351 | } |
| 352 | |
| 353 | .pl5 { |
| 354 | padding-left: 5px!important; |
| 355 | } |
| 356 | |
| 357 | .pl10 { |
| 358 | padding-left: 10px!important; |
| 359 | } |
| 360 | |
| 361 | .border-radius-top0 { |
| 362 | border-radius: 0 0 4px 4px!important; |
| 363 | } |
| 364 | |
| 365 | .selected-folder_sub-directory { |
| 366 | display: none; |
| 367 | padding-left: 24px; |
| 368 | padding-top: 5px; |
| 369 | } |
| 370 | |
| 371 | .selected-folder_plus { |
| 372 | cursor: pointer; |
| 373 | display: inline-block; |
| 374 | color: #949494; |
| 375 | position: absolute; |
| 376 | font-weight: bolder; |
| 377 | font-size: 17px; |
| 378 | margin-top: -1px; |
| 379 | margin-right: 13px; |
| 380 | left: 308px; |
| 381 | } |
| 382 | |
| 383 | .save-details-row, .selected-folder-selection, .hide-detail-inputs { |
| 384 | display: none; |
| 385 | } |
| 386 | |
| 387 | /** Empty API Keys **/ |
| 388 | .empty-api-keys { |
| 389 | width: 450px; |
| 390 | margin: 0 auto; |
| 391 | top:50%; |
| 392 | -webkit-transform: translate(0%, 50%); |
| 393 | transform: translate(0%, 50%); |
| 394 | position: absolute; |
| 395 | } |
| 396 | |
| 397 | .add-keys-text { |
| 398 | margin-bottom: 25px; |
| 399 | } |
| 400 | |
| 401 | .add-keys-icon { |
| 402 | font-size: 6.5em; |
| 403 | font-weight: bold; |
| 404 | padding: 29px 37px 24px 21px; |
| 405 | display: block; |
| 406 | border: 8px solid #cecece; |
| 407 | color: #cecece; |
| 408 | border-radius: 50%; |
| 409 | width: 40px; |
| 410 | height: 40px; |
| 411 | opacity: .85; |
| 412 | margin: 0 auto 20px auto; |
| 413 | } |
| 414 | |
| 415 | .add-keys-text p { |
| 416 | color: #8f9192; |
| 417 | } |
| 418 | |
| 419 | .add-keys-title { |
| 420 | font-weight: 500; |
| 421 | font-size: 1.1em; |
| 422 | margin-bottom: 5px; |
| 423 | } |
| 424 | |
| 425 | .add-keys-content { |
| 426 | margin-top: 0; |
| 427 | } |
| 428 | |
| 429 | .add-keys-button-container { |
| 430 | height: auto; |
| 431 | overflow: hidden; |
| 432 | } |
| 433 | |
| 434 | .auto-height-container { |
| 435 | height: auto; |
| 436 | overflow: hidden; |
| 437 | } |
| 438 | |
| 439 | /** Button **/ |
| 440 | .transferito-button.small-transferito-button { |
| 441 | padding: 11px 30px; |
| 442 | font-size: 0.9em; |
| 443 | } |
| 444 | |
| 445 | .transferito-button { |
| 446 | border: 1px solid #2a77ff; |
| 447 | background: #2a77ff; |
| 448 | padding: 15px 20px; |
| 449 | border-radius: 5px; |
| 450 | text-decoration: none; |
| 451 | font-size: 1.1em; |
| 452 | color: #fefefe; |
| 453 | display: block; |
| 454 | float: left; |
| 455 | font-weight: 700; |
| 456 | cursor: pointer; |
| 457 | } |
| 458 | |
| 459 | .transferito-button:hover { |
| 460 | background: #155cd9; |
| 461 | color: #fefefe; |
| 462 | } |
| 463 | |
| 464 | .transferito-button:disabled { |
| 465 | background: #6993df; |
| 466 | color: #fefefe; |
| 467 | border-color: #4980e2; |
| 468 | } |
| 469 | |
| 470 | .transferito-left-button { |
| 471 | background: #fefefe; |
| 472 | color: #155cd9; |
| 473 | border-color: #155cd9; |
| 474 | float: right; |
| 475 | } |
| 476 | |
| 477 | .transferito-button--floating { |
| 478 | position: absolute; |
| 479 | right: 10px; |
| 480 | } |
| 481 | |
| 482 | /** UI **/ |
| 483 | .transferito-hide { |
| 484 | display: none!important; |
| 485 | /*visibility: hidden;*/ |
| 486 | } |
| 487 | |
| 488 | .transferito-form-element{ |
| 489 | display: block; |
| 490 | } |
| 491 | |
| 492 | .transfer-button-container { |
| 493 | margin-top: 20px; |
| 494 | } |
| 495 | |
| 496 | .transferito-transfer-wrapper {} |
| 497 | |
| 498 | .transferito-transfer-wrapper label { |
| 499 | font-weight: bold; |
| 500 | } |
| 501 | |
| 502 | .transferito-error__holder { |
| 503 | padding: 15px; |
| 504 | border: 2px solid #d85757; |
| 505 | border-radius: 5px; |
| 506 | background: #ffffff; |
| 507 | color: #d85757; |
| 508 | font-weight: 500!important; |
| 509 | margin: 5px auto 10px!important; |
| 510 | line-height: 31px!important; |
| 511 | font-size: 17px!important; |
| 512 | } |
| 513 | |
| 514 | @media screen and (max-width: 782px) { |
| 515 | .transferito-error__holder { |
| 516 | width: 80%; |
| 517 | } |
| 518 | } |
| 519 | |
| 520 | /** Font **/ |
| 521 | |
| 522 | .transferito__font--center { |
| 523 | text-align: center; |
| 524 | } |
| 525 | |
| 526 | .transferito__font--smaller { |
| 527 | font-size: 11px; |
| 528 | } |
| 529 | |
| 530 | .transferito__font--small { |
| 531 | font-size: 11px; |
| 532 | } |
| 533 | |
| 534 | .transferito__font--small-2 { |
| 535 | font-size: 14px; |
| 536 | } |
| 537 | |
| 538 | .transferito__font--small-medium { |
| 539 | font-size: 18px; |
| 540 | font-weight: 300; |
| 541 | line-height: 150%; |
| 542 | } |
| 543 | |
| 544 | .transferito__font--medium { |
| 545 | font-size: 20px; |
| 546 | font-weight: 300; |
| 547 | line-height: 150%; |
| 548 | } |
| 549 | |
| 550 | .transferito__font--large { |
| 551 | font-size: 40px; |
| 552 | line-height: 65px; |
| 553 | } |
| 554 | |
| 555 | .transferito__font--bold { |
| 556 | font-weight: 400; |
| 557 | } |
| 558 | |
| 559 | .transferito__font--bolder { |
| 560 | font-weight: 500; |
| 561 | } |
| 562 | |
| 563 | .transferito__font--super-bold { |
| 564 | font-weight: 700; |
| 565 | } |
| 566 | |
| 567 | /** Grid **/ |
| 568 | .transferito__row { |
| 569 | display: flex; |
| 570 | } |
| 571 | |
| 572 | .transferito__row--width700 { |
| 573 | max-width: 700px; |
| 574 | width: 100%; |
| 575 | } |
| 576 | |
| 577 | .transferito__col--full { |
| 578 | width: 100%; |
| 579 | padding: 5px 15px; |
| 580 | position: relative; |
| 581 | } |
| 582 | .transferito__col--full-more-padding { |
| 583 | padding: 5px 40px; |
| 584 | } |
| 585 | .transferito__col--half { |
| 586 | width: 50%; |
| 587 | padding: 5px 15px; |
| 588 | } |
| 589 | |
| 590 | .transferito__choices { |
| 591 | width: 700px; |
| 592 | margin: 0 auto; |
| 593 | } |
| 594 | |
| 595 | /** Choice block **/ |
| 596 | .transferito__choice { |
| 597 | height: auto; |
| 598 | overflow: hidden; |
| 599 | border: 1px solid #e5e5e5; |
| 600 | border-radius: 6px; |
| 601 | background: #fbfbfb; |
| 602 | } |
| 603 | |
| 604 | .transferito__choice-logo { |
| 605 | display: flex; |
| 606 | justify-content: center; |
| 607 | } |
| 608 | |
| 609 | .transferito__choice-logo--cpanel { |
| 610 | background: url("../images/cpanel_logo.png") no-repeat; |
| 611 | height: 30px; |
| 612 | width: 140px; |
| 613 | background-size: contain; |
| 614 | margin-top: 17px; |
| 615 | margin-bottom: 20px; |
| 616 | } |
| 617 | |
| 618 | .transferito__choice-logo--ftp { |
| 619 | background: url("../images/ftp_icon.png") no-repeat; |
| 620 | height: 70px; |
| 621 | width: 69px; |
| 622 | background-size: contain; |
| 623 | } |
| 624 | |
| 625 | .transferito__choice-info { |
| 626 | line-height: 25px; |
| 627 | padding: 10px 50px; |
| 628 | text-align: center; |
| 629 | } |
| 630 | .transferito__choice-button { |
| 631 | display: flex; |
| 632 | justify-content: center; |
| 633 | } |
| 634 | |
| 635 | |
| 636 | /** Loader **/ |
| 637 | .transferito-wp-loading-icon { |
| 638 | float: left; |
| 639 | margin-left: -2px; |
| 640 | margin-top: 0px; |
| 641 | } |
| 642 | |
| 643 | .transferito-loading { |
| 644 | background: url("../images/loading.gif"); |
| 645 | height: 16px; |
| 646 | width: 16px; |
| 647 | margin-bottom: -2px; |
| 648 | margin-right: 5px; |
| 649 | display: inline-block; |
| 650 | } |
| 651 | |
| 652 | |
| 653 | .transferito-notice { |
| 654 | /*width: 500px;*/ |
| 655 | /*margin: 0 auto;*/ |
| 656 | } |
| 657 | |
| 658 | .transferito-page-loader { |
| 659 | width: 200px; |
| 660 | height: 200px; |
| 661 | margin: 40px auto 0; |
| 662 | background: url('../images/page-loader.gif'); |
| 663 | } |
| 664 | |
| 665 | .transferito-migration-loader { |
| 666 | width: 500px; |
| 667 | height: 250px; |
| 668 | margin: 125px auto 0; |
| 669 | background: url('../images/transferito_loading.gif') no-repeat 0 -150px; |
| 670 | } |
| 671 | |
| 672 | .transferito-page-loader-message { |
| 673 | text-align: center; |
| 674 | font-size: 20px; |
| 675 | margin: 10px 0 5px; |
| 676 | font-weight: 300; |
| 677 | } |
| 678 | |
| 679 | span.transferito_message { |
| 680 | display: block; |
| 681 | margin-bottom: 10px; |
| 682 | font-weight: normal; |
| 683 | } |
| 684 | |
| 685 | .transfer-inprogress span.message { |
| 686 | font-weight: 600; |
| 687 | } |
| 688 | |
| 689 | .transfer-inprogress_start { |
| 690 | margin-bottom: 20px; |
| 691 | margin-top: 25px; |
| 692 | } |
| 693 | |
| 694 | .progress-separator-line { |
| 695 | width: 75%; |
| 696 | margin: 25px auto 0 auto; |
| 697 | border-bottom: 1px solid #f1f1f1; |
| 698 | } |
| 699 | |
| 700 | .transferito-true { |
| 701 | color: #dfdfdf; |
| 702 | font-size: 22px; |
| 703 | margin-left: -5px; |
| 704 | margin-right: 6px; |
| 705 | margin-top: 1px; |
| 706 | } |
| 707 | |
| 708 | .transferito-false { |
| 709 | color: red; |
| 710 | font-size: 28px; |
| 711 | margin-left: -5px; |
| 712 | margin-right: 6px; |
| 713 | } |
| 714 | |
| 715 | .bold { |
| 716 | font-weight: 600; |
| 717 | } |
| 718 | |
| 719 | /***************************************************************************************************** |
| 720 | * |
| 721 | * Connection Test |
| 722 | * |
| 723 | ******************************************************************************************************/ |
| 724 | .connection-test { |
| 725 | display: flex; |
| 726 | height: 100%; |
| 727 | overflow: hidden; |
| 728 | margin-bottom: 10px; |
| 729 | /*border-top: 1px solid #f1f1f1;*/ |
| 730 | padding-top: 20px; |
| 731 | justify-content: space-between; |
| 732 | } |
| 733 | |
| 734 | .connection-test__result { |
| 735 | display: flex; |
| 736 | justify-content: flex-start; |
| 737 | align-items: center; |
| 738 | border-radius: 10px; |
| 739 | background: #f4f4f4; |
| 740 | padding: 6px 20px; |
| 741 | border: 1px solid #eaeaea; |
| 742 | } |
| 743 | |
| 744 | .connection-test__info { |
| 745 | font-weight: 700; |
| 746 | font-size: 12px; |
| 747 | text-transform: uppercase; |
| 748 | padding-right: 10px; |
| 749 | color: #878390; |
| 750 | } |
| 751 | |
| 752 | .connection-test__icon { |
| 753 | height: 25px; |
| 754 | width: 25px; |
| 755 | padding-right: 15px; |
| 756 | } |
| 757 | |
| 758 | .connection-test__icon--success { |
| 759 | background: url('../images/icon__success.png') no-repeat; |
| 760 | background-size: contain; |
| 761 | } |
| 762 | |
| 763 | .connection-test__icon--error { |
| 764 | background: url('../images/icon__error.png') no-repeat; |
| 765 | background-size: contain; |
| 766 | } |
| 767 | |
| 768 | .connection-test__icon--warning { |
| 769 | background: url('../images/icon__warning.png') no-repeat; |
| 770 | background-size: contain; |
| 771 | } |
| 772 | |
| 773 | /************************************************************************************* |
| 774 | * |
| 775 | * Directory Selection |
| 776 | * |
| 777 | *************************************************************************************/ |
| 778 | |
| 779 | .ftp-path-container { |
| 780 | display: flex; |
| 781 | justify-content: space-between; |
| 782 | width: 500px; |
| 783 | } |
| 784 | |
| 785 | .current-directory { |
| 786 | display: flex; |
| 787 | border: 2px solid #ebebeb; |
| 788 | border-bottom: 0; |
| 789 | border-radius: 3px 3px 0 0; |
| 790 | width: 486px; |
| 791 | justify-content: space-between; |
| 792 | padding: 7px 5px; |
| 793 | } |
| 794 | |
| 795 | .current-directory__action { |
| 796 | margin-left: 20px; |
| 797 | } |
| 798 | |
| 799 | .current-directory__breadcrumbs { |
| 800 | font-size: 13px; |
| 801 | color: #8b8594; |
| 802 | font-weight: 600; |
| 803 | display: flex; |
| 804 | justify-content: flex-start; |
| 805 | padding-top: 5px; |
| 806 | padding-left: 7px; |
| 807 | overflow: hidden; |
| 808 | height: 28px; |
| 809 | } |
| 810 | |
| 811 | .breadcrumbs__title { |
| 812 | padding-right: 5px; |
| 813 | margin-top: 5px; |
| 814 | font-weight: 700; |
| 815 | } |
| 816 | |
| 817 | .breadcrumbs__items { |
| 818 | margin: 0; |
| 819 | overflow-y: auto; |
| 820 | } |
| 821 | |
| 822 | .breadcrumbs__items li { |
| 823 | float: left; |
| 824 | cursor: pointer; |
| 825 | padding: 4px 5px; |
| 826 | border: 1px solid white; |
| 827 | margin-bottom: 0; |
| 828 | } |
| 829 | |
| 830 | .breadcrumbs__items li:hover { |
| 831 | border: 1px solid #e8e8e8; |
| 832 | border-radius: 4px; |
| 833 | background-color: #f5f6f5; |
| 834 | } |
| 835 | |
| 836 | .directory-selector { |
| 837 | border: 2px solid #ebebeb; |
| 838 | width: 496px; |
| 839 | min-height: 200px; |
| 840 | overflow-y: auto; |
| 841 | border-radius: 0 0 3px 3px; |
| 842 | margin-top: 0; |
| 843 | position: relative; |
| 844 | } |
| 845 | |
| 846 | .directory-selector__row { |
| 847 | background: url('../images/icon__directory.png') no-repeat 10px 10px; |
| 848 | padding: 11px 10px 11px 40px; |
| 849 | font-weight: 500; |
| 850 | color: #8b8594; |
| 851 | margin-bottom: 0; |
| 852 | cursor: pointer; |
| 853 | position: relative; |
| 854 | } |
| 855 | |
| 856 | .directory-selector__row:hover { |
| 857 | background-color: #f5f6f5; |
| 858 | } |
| 859 | |
| 860 | .directory-selector__info { |
| 861 | position: absolute; |
| 862 | top: 50%; |
| 863 | transform: translate(-50%, -50%); |
| 864 | left: 50%; |
| 865 | width: 100%; |
| 866 | cursor: pointer; |
| 867 | } |
| 868 | |
| 869 | .directory-selector__info--general { |
| 870 | text-align: center; |
| 871 | font-size: 19px!important; |
| 872 | font-weight: 500; |
| 873 | color: #8b8594; |
| 874 | } |
| 875 | |
| 876 | .directory-selector__info--general-medium { |
| 877 | text-align: center; |
| 878 | font-size: 17px!important; |
| 879 | font-weight: 400; |
| 880 | color: #8b8594; |
| 881 | } |
| 882 | |
| 883 | .directory-selector__info--error-title { |
| 884 | text-align: center; |
| 885 | font-size: 17px!important; |
| 886 | font-weight: 500; |
| 887 | color: #8b8594; |
| 888 | } |
| 889 | |
| 890 | .directory-selector__info--error-message { |
| 891 | text-align: center; |
| 892 | font-size: 14px!important; |
| 893 | font-weight: 500; |
| 894 | color: #c9554b; |
| 895 | } |
| 896 | |
| 897 | .directory-selector__loading { |
| 898 | |
| 899 | } |
| 900 | |
| 901 | .transferito-progressbar { |
| 902 | display: flex; |
| 903 | flex-direction: column; |
| 904 | width: 500px; |
| 905 | margin: 0 auto; |
| 906 | } |
| 907 | |
| 908 | .transferito-progressbar__container { |
| 909 | width: 500px; |
| 910 | height: 20px; |
| 911 | border: 2px solid #7eb259; |
| 912 | border-radius: 35px; |
| 913 | padding: 1px; |
| 914 | } |
| 915 | |
| 916 | .transferito-progressbar__fill { |
| 917 | width: 0; |
| 918 | height: 20px; |
| 919 | border-radius: 35px; |
| 920 | /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b4e391+0,61c419+98 */ |
| 921 | background: #b4e391; /* Old browsers */ |
| 922 | background: -moz-linear-gradient(left, #b4e391 0%, #61c419 98%); /* FF3.6-15 */ |
| 923 | background: -webkit-linear-gradient(left, #b4e391 0%,#61c419 98%); /* Chrome10-25,Safari5.1-6 */ |
| 924 | background: linear-gradient(to right, #b4e391 0%,#61c419 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ |
| 925 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#61c419',GradientType=1 ); /* IE6-9 */ |
| 926 | } |
| 927 | |
| 928 | .transferito-progressbar__info { |
| 929 | display: flex; |
| 930 | justify-content: space-between; |
| 931 | max-width: 500px; |
| 932 | padding: 0 3px 0 7px; |
| 933 | overflow: hidden; |
| 934 | color: #797979; |
| 935 | } |
| 936 | |
| 937 | .transferito-progressbar__label { |
| 938 | text-transform: uppercase; |
| 939 | } |
| 940 | |
| 941 | .transferito-progressbar__percentage { |
| 942 | display: flex; |
| 943 | justify-content: space-between; |
| 944 | } |
| 945 | |
| 946 | /************************************************************************************* |
| 947 | * |
| 948 | * Responsive Youtube Video |
| 949 | * |
| 950 | *************************************************************************************/ |
| 951 | .transferito-video { |
| 952 | width: 90%; |
| 953 | max-width: 730px; |
| 954 | margin-top: 25px; |
| 955 | } |
| 956 | |
| 957 | .transferito-video--center { |
| 958 | width: 80%; |
| 959 | margin: 25px auto; |
| 960 | } |
| 961 | |
| 962 | .transferito-video iframe { |
| 963 | width: 100%; |
| 964 | height: 380px; |
| 965 | } |
| 966 | |
| 967 | /************************************************************************************* |
| 968 | * |
| 969 | * icon styling |
| 970 | * |
| 971 | *************************************************************************************/ |
| 972 | .transferito-icon--clickable { |
| 973 | cursor: pointer; |
| 974 | } |
| 975 | |
| 976 | .transferito-icon--top-right { |
| 977 | position: absolute; |
| 978 | right: 8px; |
| 979 | top: 13px; |
| 980 | } |
| 981 | |
| 982 | .transferito-icon--top-margin { |
| 983 | margin-top: 2px; |
| 984 | } |
| 985 | |
| 986 | .transferito-icon--top-middle { |
| 987 | position: absolute; |
| 988 | right: 33px; |
| 989 | top: 66px; |
| 990 | } |
| 991 | |
| 992 | .transferito-icon--blue { |
| 993 | color: #047ad8; |
| 994 | } |
| 995 | |
| 996 | .transferito-icon--red { |
| 997 | color: #dd1e1e; |
| 998 | } |
| 999 | |
| 1000 | .transferito-icon--green { |
| 1001 | color: #33d921; |
| 1002 | } |
| 1003 | |
| 1004 | .transferito-icon--yellow { |
| 1005 | color: #f5bc0f; |
| 1006 | } |
| 1007 | |
| 1008 | .transferito-icon--grey { |
| 1009 | color: #3c434a; |
| 1010 | } |
| 1011 | |
| 1012 | .transferito-icon--light-grey { |
| 1013 | color: #dadada; |
| 1014 | } |
| 1015 | |
| 1016 | /************************************************************************************* |
| 1017 | * |
| 1018 | * Password visibility |
| 1019 | * |
| 1020 | *************************************************************************************/ |
| 1021 | |
| 1022 | .transferito__password-visibility { |
| 1023 | position: absolute; |
| 1024 | right: 15px; |
| 1025 | top: 20px; |
| 1026 | cursor: pointer; |
| 1027 | font-size: 18px; |
| 1028 | color: #047ad8; |
| 1029 | } |
| 1030 | |
| 1031 | .transferito__password-visibility::before { |
| 1032 | content: "\f070"; |
| 1033 | font-family: "Font Awesome 5 Free"; |
| 1034 | font-weight: 700; |
| 1035 | } |
| 1036 | |
| 1037 | .transferito__password-visibility--visible::before { |
| 1038 | content: "\f06e"; |
| 1039 | } |
| 1040 | |
| 1041 | /************************************************************************************* |
| 1042 | * |
| 1043 | * Modal styling |
| 1044 | * |
| 1045 | *************************************************************************************/ |
| 1046 | |
| 1047 | .transferito__modal { |
| 1048 | position: fixed; |
| 1049 | width: 100%; |
| 1050 | height: 100%; |
| 1051 | left: 0; |
| 1052 | top: 0; |
| 1053 | background-color: rgba(0, 0, 0, 0.4); |
| 1054 | display: -webkit-box; |
| 1055 | display: -moz-box; |
| 1056 | display: -ms-flexbox; |
| 1057 | display: -webkit-flex; |
| 1058 | display: flex; |
| 1059 | align-items: center; |
| 1060 | justify-content: center; |
| 1061 | z-index: 1000; |
| 1062 | } |
| 1063 | |
| 1064 | .transferito__modal--without { |
| 1065 | position: fixed; |
| 1066 | width: 100%; |
| 1067 | height: 100%; |
| 1068 | left: 0; |
| 1069 | top: 0; |
| 1070 | background-color: rgba(0, 0, 0, 0.4); |
| 1071 | display: -webkit-box; |
| 1072 | display: -moz-box; |
| 1073 | display: -ms-flexbox; |
| 1074 | display: -webkit-flex; |
| 1075 | display: flex; |
| 1076 | align-items: center; |
| 1077 | justify-content: center; |
| 1078 | z-index: 1000; |
| 1079 | } |
| 1080 | |
| 1081 | .transferito__modal--less { |
| 1082 | background-color: transparent; |
| 1083 | } |
| 1084 | |
| 1085 | .transferito__modal--hide { |
| 1086 | display: none; |
| 1087 | } |
| 1088 | |
| 1089 | .transferito__modal__inner { |
| 1090 | background: white; |
| 1091 | width: 500px; |
| 1092 | height: auto; |
| 1093 | border-radius: 5px; |
| 1094 | border: 1px solid #9E9E9E; |
| 1095 | padding: 15px 22px; |
| 1096 | position: relative; |
| 1097 | margin-left: 160px; |
| 1098 | } |
| 1099 | |
| 1100 | .transferito__modal__inner--default { |
| 1101 | width: auto; |
| 1102 | background: transparent; |
| 1103 | border: none; |
| 1104 | margin-top: -150px; |
| 1105 | } |
| 1106 | |
| 1107 | .transferito__modal__content { |
| 1108 | font-size: 14px; |
| 1109 | } |
| 1110 | |
| 1111 | |
| 1112 | .transferito__modal__content ul { |
| 1113 | |
| 1114 | } |
| 1115 | |
| 1116 | .transferito__modal__content ul li { |
| 1117 | |
| 1118 | } |
| 1119 | |
| 1120 | |
| 1121 | /************************************************************************************* |
| 1122 | * |
| 1123 | * Sub Navigation |
| 1124 | * |
| 1125 | *************************************************************************************/ |
| 1126 | .transferito-nav { |
| 1127 | display: -webkit-box; |
| 1128 | display: -moz-box; |
| 1129 | display: -ms-flexbox; |
| 1130 | display: -webkit-flex; |
| 1131 | display: flex; |
| 1132 | align-items: center; |
| 1133 | justify-content: center; |
| 1134 | } |
| 1135 | |
| 1136 | .transferito-nav__item { |
| 1137 | margin: 0 10px; |
| 1138 | } |
| 1139 | |
| 1140 | .transferito-nav__item__label { |
| 1141 | text-transform: uppercase; |
| 1142 | color: #585c60; |
| 1143 | } |
| 1144 | |
| 1145 | .transferito-nav__item__indicator { |
| 1146 | width: 16px; |
| 1147 | height: 16px; |
| 1148 | border-radius: 50%; |
| 1149 | border: 2px solid #328ad0; |
| 1150 | padding: 10px; |
| 1151 | text-align: center; |
| 1152 | margin: 0 auto; |
| 1153 | background: #3797e4; |
| 1154 | color: white; |
| 1155 | } |
| 1156 | |
| 1157 | .transferito-nav__item__indicator--completed { |
| 1158 | background: #62e242; |
| 1159 | border: 2px solid #56d337; |
| 1160 | } |
| 1161 | |
| 1162 | .transferito-nav__item__indicator--completed i::before { |
| 1163 | content: "\f00c"!important; |
| 1164 | } |
| 1165 | |
| 1166 | .transferito-nav__item__indicator--in-complete { |
| 1167 | background: #fbfbfb; |
| 1168 | color: #3797e4; |
| 1169 | } |
| 1170 | |
| 1171 | .transferito-nav__separator { |
| 1172 | height: 3px; |
| 1173 | background: #d6dadc; |
| 1174 | border-radius: 10px; |
| 1175 | width: 250px; |
| 1176 | margin-top: -21px; |
| 1177 | } |
| 1178 | |
| 1179 | .transferito-nav__separator--mt25 { |
| 1180 | margin-top: -25px; |
| 1181 | } |
| 1182 | |
| 1183 | /************************************************************************************* |
| 1184 | * |
| 1185 | * Progress steps |
| 1186 | * |
| 1187 | *************************************************************************************/ |
| 1188 | |
| 1189 | .transferito__progress-step { |
| 1190 | display: flex; |
| 1191 | border-bottom: 2px solid #f0f0f1; |
| 1192 | padding: 15px; |
| 1193 | background: #f4f4f4; |
| 1194 | color: #c8c8c8; |
| 1195 | } |
| 1196 | |
| 1197 | .transferito__progress-step--active, .transferito__progress-step--completed { |
| 1198 | background: #ffffff; |
| 1199 | color: #3c434a; |
| 1200 | } |
| 1201 | |
| 1202 | .transferito__progress-icon { |
| 1203 | padding-top: 5px; |
| 1204 | margin-right: 20px; |
| 1205 | } |
| 1206 | |
| 1207 | .transferito__progress-label { |
| 1208 | text-align: left; |
| 1209 | padding-top: 2px; |
| 1210 | } |
| 1211 | |
| 1212 | .transferito__progress-percentage { |
| 1213 | margin-top: 3px; |
| 1214 | font-size: 17px; |
| 1215 | font-weight: 600; |
| 1216 | text-align: center; |
| 1217 | width: 26px; |
| 1218 | } |
| 1219 | |
| 1220 | .transferito__progress-step--active .transferito__progress-percentage { |
| 1221 | color: #6c6c6c; |
| 1222 | } |
| 1223 | |
| 1224 | .transferito-header { |
| 1225 | height: 60px; |
| 1226 | padding: 15px 20px; |
| 1227 | background: #fbfbfb; |
| 1228 | border-bottom: 2px solid #e0e0e0; |
| 1229 | -webkit-box-shadow: 2px 2px 16px 1px #d7d7d7; |
| 1230 | box-shadow: 2px 2px 16px 1px #d7d7d7; |
| 1231 | margin-top: -10px; |
| 1232 | display: flex; |
| 1233 | align-items: center; |
| 1234 | justify-content: space-between; |
| 1235 | } |
| 1236 | |
| 1237 | .transferito-header__logo { |
| 1238 | background: url('../images/transferito_logo.png') no-repeat 0 0; |
| 1239 | width: 200px; |
| 1240 | height: 41px; |
| 1241 | background-size: contain; |
| 1242 | } |
| 1243 | |
| 1244 | .transferito-header__actions { |
| 1245 | display: flex; |
| 1246 | } |
| 1247 | |
| 1248 | |
| 1249 | /************************************************************************************* |
| 1250 | * |
| 1251 | * Article Link |
| 1252 | * |
| 1253 | *************************************************************************************/ |
| 1254 | |
| 1255 | .transferito-article__link { |
| 1256 | display: flex; |
| 1257 | border: 1px solid #d8d8d8; |
| 1258 | padding: 10px; |
| 1259 | border-radius: 7px; |
| 1260 | background: #f9f9f9; |
| 1261 | box-shadow: rgb(0 0 0 / 16%) 0px 1px 3px; |
| 1262 | cursor: pointer; |
| 1263 | } |
| 1264 | |
| 1265 | .transferito-article__link:hover { |
| 1266 | background: #f6f6f6; |
| 1267 | } |
| 1268 | |
| 1269 | .transferito-article__link-text { |
| 1270 | margin-left: 20px; |
| 1271 | } |
| 1272 |