| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013 |
- .responsive-image .browser {
- width: 86%;
- -webkit-box-shadow: 0 10px 60px -10px rgba(37,45,51, .5);
- box-shadow: 0 10px 60px -10px rgba(37,45,51, .5);
- }
- .responsive-image.desktop-size .browser {
- min-width: 768px;
- }
- .responsive-image .phone {
- -webkit-box-shadow: 0 10px 70px -10px rgba(37,45,51, .5);
- box-shadow: 0 10px 70px -10px rgba(37,45,51, .5);
- }
- .responsive-image .play:after,
- .responsive-image .browser:after,
- .responsive-image .phone:after {
- display: block;
- content: "";
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 999;
- width: 50%;
- background-color: rgba(0,0,0, 0.05);
- }
- .image-lines {
- position: absolute;
- top: 100px;
- left: -80px;
- height: 54px;
- width: 300px;
- background: url(../img/section/lines.svg);
- }
- .image-lines-right {
- left: auto;
- right: -84px;
- }
- @media (max-width: 1199px) {
- .page-banner-home .responsive-image .phone {
- left: -30px;
- }
- }
- @media (max-width: 991px) {
- .page-banner-home .responsive-image .phone {
- display: none;
- left: -20px;
- }
- .responsive-image {
- margin: 0 -24px;
- }
- .responsive-image .browser:not(.mobile-size) {
- min-width: 758px;
- }
- }
- /* 5.2 Image: Resposive Devices */
- .responsive-image {
- position: relative;
- }
- .responsive-image .phone {
- position: absolute;
- left: -20px;
- bottom: -19px;
- z-index: 3;
- overflow: hidden;
- }
- .play {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 1001;
- cursor: pointer;
- background: #026FCE;
- background: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -ms-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -moz-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -o-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -webkit-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- -webkit-transition: all .25s ease-in-out;
- -moz-transition: all .25s ease-in-out;
- transition: all .25s ease-in-out;
- }
- .animated .play {
- opacity: 0;
- visibility: hidden;
- }
- .play-btn {
- position: absolute;
- top: 50%;
- left: 50%;
- right: 0;
- display: inline-block;
- height: 52px;
- width: 52px;
- margin: -26px 0 0 -26px;
- border: 2px solid rgba(196, 227, 255, 0.8);
- color: rgba(196, 227, 255, 0.8);
- font-size: 24px;
- line-height: 50px;
- text-align: center;
- -webkit-border-radius: 100%;
- border-radius: 100%;
- -webkit-transition: all .25s ease-in-out;
- -moz-transition: all .25s ease-in-out;
- transition: all .25s ease-in-out;
- }
- .play-btn > i {
- margin-left: 2px;
- }
- .play:hover .play-btn {
- color: #fff;
- border-color: #fff;
- }
- .browser .play-btn {
- display: inline-block;
- height: 100px;
- width: 100px;
- margin: -50px 0 0 -50px;
- font-size: 42px;
- line-height: 98px;
- }
- .reponsive-image-types {
- margin-bottom: 30px;
- padding: 0;
- border: none;
- list-style: none;
- text-align: center;
- }
- .responsive-image .browser {
- -webkit-transition: all ease 0.5s;
- }
- .mobile-size .mobile-size-hidden {
- display: none!important;
- }
- /* Control Panel Preview */
- .control-panel {
- position: absolute;
- height: 100%;
- width: 100%;
- color: #616366;
- font-size: 11px;
- line-height: 15px;
- text-align: left;
- visibility: visible!important;
- }
- .control-panel p {
- margin-bottom: 10px;
- }
- /* Control Panel Navigation */
- .cp-navbar {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 68px;
- padding: 24px 0;
- overflow: hidden;
- }
- .cp-navbar > * {
- position: relative;
- z-index: 1;
- }
- .cp-navbar:after {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- content: "";
- height: 100%;
- width: 350px;
- background: #026FCE;
- background: linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -ms-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -moz-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -o-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: -webkit-linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- background-image: linear-gradient(80deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
- }
- .cp-navbar .navbar-header {
- float: none;
- margin-bottom: 30px;
- text-align: center;
- }
- .cp-navbar .navbar-brand {
- display: inline-block;
- float: none;
- height: 32px;
- width: 32px;
- background-image: url(../img/section/bird2.html);
- background-size:32px auto;
- font-size: 0;
- line-height: 32px;
- text-indent: -9999px;
- }
- .cp-navbar .navbar-nav {
- display: block;
- width: 68px;
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .cp-navbar .navbar-nav > li {
- float: none;
- margin-bottom: 12px;
- }
- .cp-navbar .navbar-nav > li > span {
- display: block;
- padding: 6px 0;
- color: rgba(196, 227, 255, 0.8);
- font-size: 10px;
- font-weight: bold;
- text-align: center;
- line-height: 16px;
- }
- .cp-navbar .navbar-nav > li.active > span:after {
- position: absolute;
- right: -3px;
- top: 50%;
- display: block;
- height: 16px;
- width: 8px;
- margin: -8px 0 0 0;
- content: "\f2f4";
- color: #fff;
- font-family: 'Material-Design-Iconic-Font';
- font-size: 30px;
- line-height: 16px;
- }
- .cp-navbar .navbar-nav > li > span > i {
- position: relative;
- display: block;
- margin-bottom: 5px;
- font-size: 17px;
- }
- .desktop-size .navbar-toggle,
- .desktop-size .notification-toggle,
- .tablet-size .notification-toggle,
- .desktop-size .cp-navbar .navbar-logout {
- display: none;
- }
- .tablet-size .cp-navbar {
- height: 58px;
- width: 100%;
- padding: 12px 0;
- }
- .tablet-size .cp-navbar:after,
- .mobile-size .cp-navbar:after {
- width: 120%;
- }
- .tablet-size .cp-navbar .navbar-header {
- float: left;
- width: auto;
- padding-left: 18px;
- padding-right: 6px;
- margin: 0;
- }
- .tablet-size .cp-navbar .navbar-nav {
- float: right;
- width: auto;
- }
- .tablet-size .cp-navbar .navbar-nav > li {
- float: left;
- margin: 0;
- }
- .tablet-size .cp-navbar .navbar-nav > li > span {
- padding: 0 14px;
- }
- .tablet-size .cp-navbar .navbar-nav > li.active > span:after {
- top: auto;
- bottom: -10px;
- right: 50%;
- height: 8px;
- width: 16px;
- margin: 0 -8px 0 0;
- content: "\f2f8";
- }
- .mobile-size .cp-navbar {
- height: 38px;
- width: 100%;
- padding: 4px 0;
- }
- .mobile-size .cp-navbar .navbar-container {
- display: none;
- }
- .mobile-size .cp-navbar .navbar {
- padding: 0 10px;
- }
- .mobile-size .cp-navbar .navbar-header {
- padding-left: 18px;
- margin: 0;
- }
- .mobile-size .cp-navbar .navbar-brand {
- margin-top: -3px;
- margin-bottom: -3px;
- }
- .mobile-size .cp-navbar .navbar-toggle {
- display: block;
- position: absolute;
- top: 6px;
- left: 6px;
- z-index: 3;
- padding: 5px;
- }
- .mobile-size .cp-navbar .navbar-toggle .icon-bar {
- height: 1px;
- width: 14px;
- background-color: #fff;
- }
- .mobile-size .cp-navbar .navbar-toggle .icon-bar + .icon-bar {
- margin-top: 3px;
- }
- .mobile-size .cp-navbar .navbar-header .notification-toggle {
- float: right;
- padding: 9px 5px;
- }
- .mobile-size .cp-navbar .navbar-header .notification-toggle > i {
- color: #fff;
- font-size: 15px;
- }
- /* Control Panel Content */
- .cp-content .row {
- margin-left: -5px;
- margin-right: -5px;
- }
- .cp-content [class*="col-"] {
- padding-right: 5px;
- padding-left: 5px;
- }
- .cp-content .h6 {
- display: block;
- margin: 0 0 20px 0;
- }
- .cp-content .panel {
- padding: 14px;
- margin-bottom: 12px;
- -webkit-border-radius: 2px;
- border-radius: 2px;
- }
- .cp-content .tabs-container {
- margin-bottom: 20px;
- }
- .cp-content .tabs-container > .btn {
- display: none;
- }
- .cp-content .nav-tabs {
- margin: 0 -8px;
- border-bottom: none;
- }
- .cp-content .nav-tabs > li > span {
- display: inline-block;
- padding: 10px 1px;
- margin: 0 8px;
- line-height: 10px;
- }
- .mobile-size .cp-content {
- margin: 38px 0 0 0
- }
- .mobile-size .cp-content .h6 {
- margin-top: 6px;
- font-size: 12px;
- line-height: 16px;
- }
- .mobile-size .step-list > li:nth-child(2) .h6 {
- margin-bottom: 10px;
- }
- /* Control Panel: Server List */
- .cp-server-loading {
- }
- /* Control Panel: Server List */
- .cp-server-list {
- opacity: 0;
- visibility: hidden;
- }
- .no-data {
- width: 200px;
- padding-top: 100px;
- margin: 0 auto;
- text-align: center;
- }
- .no-data .server {
- display: inline-block;
- margin-bottom: 10px;
- }
- .tablet-size .no-data {
- padding-top: 60px;
- }
- .mobile-size .no-data {
- width: 150px;
- padding-top: 40px;
- }
- .mobile-size .no-data .server {
- height: 59px;
- width: 47px;
- }
- .cp-servers-table {
- position: absolute;
- top: 20px;
- opacity: 0;
- visibility: hidden;
- }
- .desktop-size .cp-servers-table {
- width: 700px;
- }
- .desktop-size .cp-servers-table-mobile {
- display: none;
- }
- /* Control Panel: Server Deploying */
- .cp-server-deploying {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 999;
- background: #fff;
- height: 100%;
- margin-left: 68px;
- opacity: 0;
- visibility: hidden;
- }
- .tablet-size .cp-server-deploying,
- .mobile-size .cp-server-deploying {
- margin-left: 0;
- }
- /* Control Panel: Server Deployment */
- /* Deploy Server: STEPS */
- .cp-content .step-list {
- padding: 10px 0 24px 0;
- margin: 0;
- list-style: none;
- }
- .cp-content .step-list > li {
- position: relative;
- padding: 0 0 0 40px;
- margin: 24px 0 0 0;
- }
- .tablet-size .cp-content .step-list {
- padding-bottom: 30px;
- }
- .tablet-size .cp-content .step-list > li {
- margin: 18px 0 0 0;
- }
- .cp-content .step-list > li:after,
- .cp-content .step-list > li:before {
- display: table;
- content: "";
- clear: both;
- }
- .cp-content .step-list li > .step {
- display: inline-block;
- height: 26px;
- width: 26px;
- border: 1px solid #D2D8DC;
- color: #8a9399;
- font-size: 11px;
- font-weight: bold;
- text-align: center;
- line-height: 26px;
- -webkit-border-radius: 26px;
- border-radius: 26px;
- }
- .desktop-size .cp-content .step-list li > .step,
- .tablet-size .cp-content .step-list li > .step {
- position: absolute;
- top: -3px;
- left: 0;
- }
- .mobile-size .cp-content .step-list > li {
- padding: 0;
- margin-top: 14px;
- }
- .mobile-size .cp-content .step-list li > .step {
- float: left;
- }
- .mobile-size .cp-content .step-list li > .h6 {
- margin-left: 36px;
- white-space: nowrap;
- }
- /* Deploy Server: PANELS */
- .cp-content .panel .select-icon {
- position: relative;
- font-size: 28px;
- }
- .cp-content .panel .select-icon:before {
- color: #1e88e5;
- }
- .cp-content .panel .select-icon span,
- .cp-content .panel .select-icon span:before {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- height: 100%;
- width: 102%;
- background: #fff;
- opacity: 0;
- }
- .cp-content .panel .select-icon span:before {
- left: 50%;
- top: 50%;
- content: "\f26b";
- height: 26px;
- width: 26px;
- margin: -13px 0 0 -13px;
- background: #1e88e5;
- -webkit-border-radius: 40px;
- border-radius: 40px;
- color: #fff;
- font-size: 14px;
- font-family: 'Material-Design-Iconic-Font';
- text-align: center;
- line-height: 26px;
- -webkit-transform: scale(.5);
- -ms-transform: scale(.5);
- transform: scale(.5);
- }
- .cp-content .select-name {
- display: block;
- margin: 0;
- color: #363b40;
- font-size: 11px;
- font-weight: bold;
- line-height: 11px;
- }
- .cp-content .select-name small {
- display: block;
- margin-top: 4px;
- color: #919699;
- font-size: 8px;
- font-weight: 300;
- text-transform: none;
- }
- .cp-content .select-header {
- position: relative;
- padding-left: 44px;
- }
- .cp-content .select-header:after,
- .cp-content .select-header:before {
- display: table;
- content: "";
- clear: both;
- }
- .cp-content .select-header .select-icon {
- position: absolute;
- top: 50%;
- left: 0;
- }
- .cp-content .select-header .select-icon.icon {
- margin-top: -15px;
- }
- .cp-content .select-header .select-icon.flag {
- margin-top: -10px;
- }
- .cp-content .select-options {
- position: absolute;
- top: -1px;
- left: -1px;
- right: -1px;
- z-index: 1;
- display: none;
- width: 101%;
- padding: 55px 0 14px 0;
- margin: 0;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- list-style: none;
- }
- .cp-content .select-options > li {
- padding: 2px 14px;
- color: #616366;
- font-size: 10px;
- }
- /* Deploy Server: PACKAGES */
- .cp-content .packages {
- padding: 0;
- }
- .cp-content .package {
- margin-bottom: 12px;
- -webkit-border-radius: 2px;
- border-radius: 2px;
- }
- .cp-content .package-header {
- padding: 12px;
- }
- .cp-content .package-title {
- margin-bottom: 4px;
- font-size: 11px;
- line-height: 16px;
- }
- .cp-content .package-price {
- font-size: 24px;
- font-weight: 300;
- line-height: 24px;
- }
- .cp-content .package-price .cycle {
- font-size: 12px;
- }
- .cp-content .package-body ul > li {
- margin-bottom: 2px;
- }
- .cp-content .package-hourly {
- font-size: 10px;
- line-height: 10px;
- }
- .cp-content .package-body {
- padding: 12px;
- }
- .cp-content .form-control {
- height: 28px;
- font-size: 11px;
- -webkit-border-radius: 1px;
- border-radius: 1px;
- }
- /* Deploy Server: CHECKBOX */
- .cp-content .checkbox-style {
- position: relative;
- display: inline-block;
- height: 12px;
- width: 12px;
- margin-top: -6px;
- margin-right: 6px;
- background: #fff;
- border: 2px solid #cacdcf;
- border-radius: 2px;
- -webkit-transition: all .15s ease;
- transition: all .15s ease;
- cursor: pointer;
- vertical-align: middle;
- }
- .cp-content .checkbox-style:before {
- position: absolute;
- top: -2px;
- left: -2px;
- display: block;
- content: "\f26b";
- height: 12px;
- width: 12px;
- opacity: 0;
- color: #fff;
- font-size: 12px;
- font-family: 'Material-Design-Iconic-Font';
- text-align: center;
- line-height: 12px;
- -webkit-transition: 0.15s ease-in-out;
- transition: 0.15s ease-in-out;
- -webkit-transform: scale(.7);
- -ms-transform: scale(.7);
- transform: scale(.7);
- }
- .cp-content .checkbox {
- white-space: nowrap;
- }
- /* Deploy Server: LABEL */
- .cp-content .label {
- padding: 3px 4px;
- font-size: 8px;
- -webkit-border-radius: 1px;
- border-radius: 1px;
- }
- /* Deploy Server: SUMMARY */
- .cp-deploy-summary {
- position: absolute;
- right: 0;
- left: 0;
- z-index: 9999;
- padding: 14px 0;
- background: #fff;
- }
- .cp-deploy-summary:after,
- .cp-deploy-summary:before {
- display: table;
- content: "";
- clear: both;
- }
- .cp-summary-price {
- display: inline-block;
- padding: 8px 0;
- font-size: 13px;
- font-weight: bold;
- }
- .cp-summary-price span {
- color: #1e88e5;
- }
- .cp-summary-btn {
- float: right;
- display: block;
- padding: 8px 14px;
- background: #1e88e5;
- color: #fff;
- font-weight: bold;
- -webkit-border-radius: 2px;
- border-radius: 2px;
- }
- .desktop-size .cp-deploy-summary {
- bottom: 0;
- margin-left: 68px;
- -webkit-box-shadow: 0 0 15px rgba(0,0,0, 0.1);
- box-shadow: 0 0 15px rgba(0,0,0, 0.1);
- }
- .desktop-size .cp-deploy-server .cp-content .cp-container > .cp-deploy-summary {
- display: none;
- }
- .mobile-size .cp-deploy-server > .cp-deploy-summary,
- .tablet-size .cp-deploy-server > .cp-deploy-summary {
- display: none;
- }
- .tablet-size .cp-deploy-summary {
- border-top: 1px solid #edf0f2;
- }
- .mobile-size .cp-summary-price {
- padding-top: 0;
- padding-bottom: 15px;
- }
- .mobile-size .cp-deploy-summary {
- border-top: 1px solid #edf0f2;
- text-align: center;
- }
- .mobile-size .cp-summary-btn {
- display: block;
- width: 100%;
- }
- /* Control Panel: HEADER */
- .cp-header {
- margin-bottom: 0px;
- border-bottom: 1px solid #edf0f2;
- text-align: left;
- }
- .cp-header .h1 {
- display: inline-block;
- margin: 30px 0 18px;
- font-size: 17px;
- line-height: 20px;
- }
- .cp-header .tabs-container {
- margin: 0 0 -1px 0;
- }
- .cp-header-hero {
- text-align: center;
- }
- .cp-header-hero .h1 {
- margin: 38px 0 32px;
- font-size: 20px;
- line-height: 24px;
- }
- .mobile-size .cp-header .h1 {
- margin: 10px 0 0;
- font-size: 14px;
- font-weight: 500;
- }
- .mobile-size .cp-header-hero .h1 {
- margin: 15px 0 10px;
- }
- /* Deploy BTN */
- .cp-deploy-btn {
- position: absolute;
- height: 36px;
- width: 36px;
- background: #1e88e5;
- color: #fff;
- font-size: 18px;
- text-align: center;
- line-height: 36px;
- -webkit-border-radius: 100%;
- border-radius: 100%;
- -webkit-box-shadow: 0 3px 10px rgba(0,0,0, 0.2);
- box-shadow: 0 3px 10px rgba(0,0,0, 0.2);
- }
- .tablet-size .control-panel .cp-deploy-btn,
- .desktop-size .control-panel .cp-deploy-btn {
- bottom: -15px;
- right: 20px;
- -webkit-animation: all ease .4s 0.5s;
- animation: all ease .4s .5s;
- }
- .mobile-size .control-panel .cp-deploy-btn {
- bottom: -42px;
- right: 10px;
- z-index: 9999;
- -webkit-animation: all ease .4s 0.5s;
- animation: all ease .4s .5s;
- }
- /* Contorl Panel Content */
- .cp-content {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- margin-left: 68px;
- }
- .cp-container {
- position: relative;
- max-width: 776px;
- margin: 0 auto;
- padding: 0 20px;
- }
- .mobile-size .cp-container {
- padding: 0 10px;
- }
- .tablet-size .cp-content .col-sm-3 {
- width: 33.33333333%;
- }
- .tablet-size .cp-content .col-sm-3.col-xs-6 {
- width: 25%;
- }
- .mobile-size .cp-content .col-sm-3 {
- width: 100%;
- }
- /* desktop */
- .desktop-size .control-panel .cursor {
- position: absolute;
- right: 300px;
- top: 200px;
- z-index: 3;
- }
- /* tablet */
- .tablet-size.browser {
- height: 460px;
- width: 758px;
- padding: 10px 50px;
- border-radius: 20px;
- }
- .mobile-size .browser-header,
- .tablet-size .browser-header {
- display: none;
- }
- .tablet-size .cp-sidebar {
- height: 64px;
- width: 658px;
- background: url(../img/panel/panel-tablet-nav.png);
- }
- .tablet-size .cp-content {
- margin: 58px 0 0 0
- }
- .tablet-size.browser:after {
- display: block;
- content: "";
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- height: 34px;
- width: 34px;
- margin: auto 8px;
- background-color: #22292e;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- border-radius: 100%;
- }
- .tablet-size.browser:before {
- display: block;
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- top: 0;
- height: 6px;
- width: 6px;
- margin: auto 23px;
- background-color: #22292e;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- }
- /* mobile */
- .mobile-size.browser {
- height: 445px;
- width: 215px;
- padding: 50px 10px;
- border-radius: 20px;
- }
- .mobile-size.browser:after {
- top: auto;
- left: 0;
- right: 0;
- display: block;
- content: "";
- height: 34px;
- width: 34px;
- margin: 8px auto;
- background-color: #22292e;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- border-radius: 100%;
- }
- .mobile-size.browser:before {
- display: block;
- content: "";
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- height: 3px;
- width: 40px;
- margin: 23px auto;
- background-color: #22292e;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- }
- /* cursor */
- .cp-cursor {
- position: absolute;
- z-index: 1000;
- right: 300px;
- top: 200px;
- width: 28px;
- height: 31px;
- }
- .desktop-size .cp-cursor:before {
- position: absolute;
- z-index: 1;
- display: block;
- content:"";
- width: 28px;
- height: 31px;
- background: url(../img/panel/cursor-pointer%402x.png);
- background-size: cover;
- }
- .animated .cp-cursor:after {
- position: absolute;
- top: -5px;
- left: 0;
- z-index: -1;
- height: 40px;
- width: 40px;
- display: block;
- content: "";
- background: #1e88e5;
- margin: -10px;
- -webkit-border-radius: 100%;
- border-radius: 100%;
- opacity: 1;
- -ms-filter: none;
- filter: none;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- .tablet-size .cp-cursor {
- right: 220px;
- top: 250px;
- }
- .mobile-size .cp-cursor {
- right: 100px;
- top: 100px;
- }
- @media(max-width: 1199px) {
- .cp-cursor {
- right: 210px
- }
- }
- @media(max-width: 991px) {
- .cp-cursor {
- right: 220px
- }
- }
- .cp-deploy-server {
- position: relative;
- z-index: 998;
- height: 100%;
- opacity: 0;
- }
- .mobile-size .cp-deploy-server .cp-content,
- .tablet-size .cp-deploy-server .cp-content,
- .desktop-size .cp-deploy-server .cp-content {
- z-index: 9999;
- height: 1400px;
- background: #fff;
- }
- .tablet-size .cp-deploy-server .cp-content {
- height: 1560px;
- }
- .mobile-size .cp-deploy-server .cp-content {
- height: 2960px;
- }
- /* Table */
- .cp-servers-table {
- padding-top: 20px;
- }
- .cp-servers-table .table {
- font-size: 11px;
- }
- .cp-servers-table .table thead th {
- padding: 6px 10px
- }
- .cp-servers-table .table > thead > tr > th,
- .cp-servers-table .table > tbody > tr > th,
- .cp-servers-table .table > tfoot > tr > th,
- .cp-servers-table .table > thead > tr > td,
- .cp-servers-table .table > tbody > tr > td,
- .cp-servers-table .table > tfoot > tr > td {
- padding: 6px 7px;
- }
- .cp-servers-table .table .flag-xs {
- margin-right: 4px;
- margin-bottom: -3px;
- }
- .mobile-size .cp-servers-table {
- top: 0;
- left: 0;
- right:0;
- }
- .mobile-size .cp-servers-table .table thead {
- display: none;
- }
- .mobile-size .cp-servers-table .cp-table-servers > tbody > tr {
- position: relative;
- padding-left: 20px;
- }
- .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-title {
- padding-right: 30px;
- }
- /*
- .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-os {
- position: absolute;
- top: 0;
- right: 0;
- }
- */
- .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-os {
- display: none;
- }
- /*
- .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-checkbox {
- position: absolute;
- top: 0;
- left: 0;
- }
- */
- .mobile-size .cp-servers-table .cp-table-servers > tbody > tr > .cp-cell-checkbox {
- display: none;
- }
- .mobile-size .cp-servers-table .table ,
- .mobile-size .cp-servers-table .table tbody,
- .mobile-size .cp-servers-table .table tr,
- .mobile-size .cp-servers-table .table td {
- display: block;
- }
- .mobile-size .cp-servers-table .table td {
- border: none;
- padding-top: 3px;
- padding-bottom: 3px;
- }
- .mobile-size .cp-servers-table {
- display: none;
- }
- .mobile-size .cp-servers-table-mobile {
- position: absolute;
- top: 20px;
- opacity: 0;
- visibility: hidden;
- }
- .mobile-size .cp-cell-costs,
- .mobile-size .cp-cell-status {
- float: left;
- width: 50%;
- }
- .mobile-size .cp-cell-status {
- text-align: right;
- margin-bottom: 12px;
- }
- .cp-table-label {
- display: none;
- }
- .mobile-size .cp-table-labe {
- display: block;
- }
- .cp-cell-location {
- white-space: nowrap;
- }
- .cp-progress {
- position: absolute;
- left: 50%;
- top: 50%;
- height: 12px;
- width: 160px;
- margin: -6px 0 0 -80px;
- border: 1px solid #e6e9eb;
- -webkit-border-radius: 30px;
- border-radius: 30px;
- }
- .cp-progress-bar {
- position: absolute;
- top: 2px;
- left: 2px;
- height: 6px;
- width: 0;
- background: #1e88e5;
- -webkit-border-radius: 30px;
- border-radius: 30px;
- }
- /************************************
- ANIMATIONS
- ************************************** /
- /* Desktop Animation: Step 1: click on deploy button */
- .animated .cp-cursor:after {
- -webkit-animation: cursorTap .4s .5s, cursorTap .4s 1.9s, cursorTap .4s 3s, cursorTap .4s 3.8s, cursorTap .4s 5s, cursorTap .4s 6.2s, cursorTap .4s 7.4s, cursorTap .4s 9.8s;
- animation: cursorTap .4s .5s, cursorTap .4s 1.9s, cursorTap .4s 3s, cursorTap .4s 3.8s, cursorTap .4s 5s, cursorTap .4s 6.2s, cursorTap .4s 7.4s, cursorTap .4s 9.8s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .desktop-size .animated .cp-deploy-btn {
- -webkit-animation: all ease .25s .5s;
- animation: all ease .25s .5s;
- }
- .desktop-size .animated .cp-cursor {
- -webkit-animation: cursorMove .5s, cursorMove2 .6s 1.5s, cursorMove3 .8s 2.3s, cursorMove4 .3s 3.5s, cursorMove5 .4s 4s, cursorMove6 .4s 5.8s, cursorMove7 1s 6.5s, cursorMove8 .8s 9.1s;
- animation: cursorMove .5s, cursorMove2 .6s 1.5s, cursorMove3 .8s 2.3s, cursorMove4 .3s 3.5s, cursorMove5 .4s 4s, cursorMove6 .4s 5.8s, cursorMove7 1s 6.5s, cursorMove8 .8s 9.1s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .tablet-size .animated .cp-deploy-server .cp-content {
- -webkit-animation: tabletContentMove 1s 2.3s, tabletContentMove2 1s 4s, tabletContentMove3 .8s 5.2s, tabletContentMove4 1s 6.5s;
- animation: tabletContentMove 1s 2.3s, tabletContentMove2 1s 4s, tabletContentMove3 .8s 5.2s, tabletContentMove4 1s 6.5s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .tablet-size .animated .cp-cursor {
- -webkit-animation: tabletCursorMove .5s, tabletCursorMove2 .6s 1.5s, tabletCursorMove3 .8s 2.3s, tabletCursorMove4 .3s 3.5s, tabletCursorMove5 .4s 4s, tabletCursorMove6 .4s 5.8s, tabletCursorMove7 1s 6.5s, tabletCursorMove8 .8s 9.1s;
- animation: tabletCursorMove .5s, tabletCursorMove2 .6s 1.5s, tabletCursorMove3 .8s 2.3s, tabletCursorMove4 .3s 3.5s, tabletCursorMove5 .4s 4s, tabletCursorMove6 .4s 5.8s, tabletCursorMove7 1s 6.5s, tabletCursorMove8 .8s 9.1s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .tablet-size .animated .cp-deploy-btn,
- .desktop-size .animated .cp-deploy-btn {
- -webkit-animation-name: click;
- animation-name: click;
- }
- .mobile-size .animated .cp-cursor:after {
- -webkit-animation: cursorTap .4s .5s, cursorTap .4s 2.2s, cursorTap .4s 3.5s, cursorTap .4s 4.3s, cursorTap .4s 6s, cursorTap .4s 9.3s, cursorTap .4s 11.5s, cursorTap .4s 13.2s;
- animation: cursorTap .4s .5s, cursorTap .4s 2.2s, cursorTap .4s 3.5s, cursorTap .4s 4.3s, cursorTap .4s 6s, cursorTap .4s 9.3s, cursorTap .4s 11.5s, cursorTap .4s 13.2s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-cursor {
- -webkit-animation: mobileCursorMove .5s, mobileCursorMove2 .6s 1.5s, mobileCursorMove3 .6s 2.5s, mobileCursorMove4 .3s 4s, mobileCursorMove5 .3s 9s, mobileCursorMove6 .3s 11s, mobileCursorMove7 .3s 12.9s;
- animation: mobileCursorMove .5s, mobileCursorMove2 .6s 1.5s, mobileCursorMove3 .6s 2.5s, mobileCursorMove4 .3s 4s, mobileCursorMove5 .3s 9s, mobileCursorMove6 .3s 11s, mobileCursorMove7 .3s 12.9s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-deploy-server .cp-content {
- -webkit-animation: mobileContentMove 0.8s 1.3s, mobileContentMove2 1.5s 2.5s, mobileContentMove3 1.5s 4.7s, mobileContentMove4 2.5s 6.5s, mobileContentMove5 1.5s 10s;
- animation: mobileContentMove 0.8s 1.3s, mobileContentMove2 1.5s 2.5s, mobileContentMove3 1.5s 4.7s, mobileContentMove4 2.5s 6.5s, mobileContentMove5 1.5s 10s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- /*
- .mobile-size .animated .cp-navbar {
- -webkit-animation: mobileContentMove 0.8s 1.3s;
- animation: mobileContentMove 0.8s 1.3s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- */
- /* Desktop Animation: Step 2: Show Deploy Content */
- .animated .cp-server-list {
- -webkit-animation: show 0s 0s, hide .5s .7s, show .5s 12s;
- animation: show 0s 0s, hide .5s .7s, show .5s 12s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-server-list .no-data {
- -webkit-animation: hide 0s 1s;
- animation: hide 0s 1s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-servers-table {
- -webkit-animation: show 0s 1s;
- animation: show 0s 1s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-servers-table-mobile {
- -webkit-animation: show 0s 1s;
- animation: show 0s 1s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-deploy-server {
- -webkit-animation: show .5s .9s, hide 0s 11s;
- animation: show .5s .9s, hide 0s 11s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .desktop-size .animated .cp-deploy-server .cp-content {
- -webkit-animation: contentMove 1s 2.3s, contentMove2 1s 4s, contentMove3 .8s 5.2s, contentMove4 1s 6.5s;
- animation: contentMove 1s 2.3s, contentMove2 1s 4s, contentMove3 .8s 5.2s, contentMove4 1s 6.5s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .tablet-size .animated .cp-navbar {
- -webkit-animation: tabletContentMove 1s 2.3s, tabletMenuBack 0s 11s;
- animation: tabletContentMove 1s 2.3s, tabletMenuBack 0s 11s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-server-list {
- -webkit-animation: show 0s 0s, hide .5s .7s, show .5s 15s;
- animation: show 0s 0s, hide .5s .7s, show .5s 15s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-deploy-server {
- -webkit-animation: show .5s .9s, hide 0s 14s;
- animation: show .5s .9s, hide 0s 14s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- /* Desktop Animation: Step 3: Choose Location */
- .animated .cp-location-click,
- .animated .cp-location-click .select-icon span,
- .animated .cp-location-click .select-icon span:before {
- -webkit-transition: all ease .15s 2s;
- transition: all ease .15s 2s;
- }
- .mobile-size .animated .cp-location-click,
- .mobile-size .animated .cp-location-click .select-icon span,
- .mobile-size .animated .cp-location-click .select-icon span:before {
- -webkit-transition: all ease .15s 2.2s;
- transition: all ease .15s 2.2s;
- }
- .animated .cp-location-click {
- border-color: #1e88e5
- }
- .animated .cp-location-click .select-icon span {
- opacity: 1;
- }
- .animated .cp-location-click .select-icon span:before {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- /* Desktop Animation: Step 4: Choose OS */
- .animated .cp-os-click {
- -webkit-transition: all ease .15s 3.1s;
- transition: all ease .15s 3.1s;
- }
- .animated .cp-os-click {
- border-color: #1e88e5
- }
- .animated .cp-os-click .select-header {
- position: relative;
- z-index: 2;
- }
- .cp-os-click .select-options {
- opacity: 0;
- display: block;
- background: #fff;
- border: 1px solid #1e88e5;
- -webkit-box-shadow: 0 0 40px -10px rgba(37,45,51, .5);
- box-shadow: 0 0 40px -10px rgba(37,45,51, .5);
- }
- .animated .cp-os-click .select-options {
- -webkit-animation: show .15s 3.1s, hide .15s 3.9s;
- animation: show .15s 3.1s, hide .15s 3.9s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-os-click .select-icon span,
- .animated .cp-os-click .select-icon span:before {
- -webkit-transition: all ease .15s 3.9s;
- transition: all ease .15s 3.9s;
- }
- .mobile-size .animated .cp-os-click {
- -webkit-transition: all ease .15s 3.5s;
- transition: all ease .15s 3.5s;
- }
- .mobile-size .animated .cp-os-click .select-options {
- -webkit-animation: show .15s 3.5s, hide .15s 4.5s;
- animation: show .15s 3.5s, hide .15s 4.5s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-os-click .select-icon span,
- .mobile-size .animated .cp-os-click .select-icon span:before {
- -webkit-transition: all ease .15s 4.4s;
- transition: all ease .15s 4.4s;
- }
- /* version choose */
- .animated .cp-os-click .select-options > li:first-child {
- -webkit-transition: all ease .15s 3.5s;
- transition: all ease .15s 3.5s;
- }
- .animated .cp-os-click .select-options > li:first-child {
- color: #1e88e5
- }
- .animated .cp-os-click .select-icon span {
- opacity: 1;
- }
- .animated .cp-os-click .select-icon span:before {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- .mobile-size .animated .cp-os-click .select-options > li:first-child {
- -webkit-transition: all ease .15s 4.3s;
- transition: all ease .15s 4.3s;
- }
- /* Desktop Animation: Step 5: Choose Package */
- .animated .cp-package-click {
- -webkit-transition: all ease .15s 5s;
- transition: all ease .15s 5s;
- }
- .animated .cp-package-click {
- border-color: #1e88e5
- }
- /*
- .animated .cp-package-click {
- border-color: #1e88e5;
- background: rgba(0, 0, 0, 0) linear-gradient(45deg, #135fac 1%, #1e88e5 64%, #40baf5 97%) repeat scroll 0 0;
- background-color: #1e88e5;
- }
- .animated .cp-package-click > .package-header {
- border-color: #1669b5;
- }
- .animated .cp-package-click > .package-header > .package-title,
- .animated .cp-package-click > .package-header > .package-price {
- color: #ffffff;
- }
- .animated .cp-package-click > .package-header > .package-hourly,
- .animated .cp-package-click > .package-body > ul > li {
- color: #ffffff;
- opacity: 0.6;
- }
- */
- .mobile-size .animated .cp-package-click {
- -webkit-transition: all ease .15s 6s;
- }
- /* Desktop Animation: Step 6: Choose Features */
- .animated .cp-checkbox-click,
- .animated .cp-checkbox-click:before {
- -webkit-transition: all ease .15s 6.2s;
- transition: all ease .15s 6.2s;
- }
- .animated .cp-checkbox-click:before {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- .animated .cp-checkbox-click {
- border-color: #1e88e5;
- background-color: #1e88e5;
- }
- .mobile-size .animated .cp-checkbox-click {
- -webkit-transition: all ease .15s 9.4s;
- transition: all ease .15s 9.4s;
- }
- /* Desktop Animation: Step 7: Instance Name */
- .cp-instance-input {
- position: relative;
- color: #999;
- }
- .cp-instance-name {
- position: absolute;
- top: 7px;
- left: 10px;
- display: block;
- width: 160px;
- background: #fff;
- color: #616366;
- overflow: hidden;
- }
- .cp-instance-name > span {
- position: absolute;
- top: 0;
- right: 0;
- display: block;
- width: 200px;
- height: 100%;
- background: #fff;
- }
- .animated .cp-instance-input .form-control {
- -webkit-animation: borderColor .15s 7.5s;
- animation: borderColor .15s 7.5s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-instance-name > span {
- -webkit-animation: typing 1.5s steps(36, end) 7.6s;
- animation: typing 1.5s steps(36, end) 7.6s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-instance-input .form-control {
- -webkit-animation: borderColor .15s 11.5s;
- -webkit-animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-instance-name > span {
- -webkit-animation: typing 1.5s steps(36, end) 11.8s;
- -webkit-animation-fill-mode: forwards;
- }
- @-webkit-keyframes typing {
- from { width: 200px; }
- to { width: 0; }
- }
- @keyframes typing {
- from { width: 200px; }
- to { width: 0; }
- }
- @-webkit-keyframes borderColor {
- from { border-color: #e6e9eb; }
- to { border-color: #1e88e5; }
- }
- @keyframes borderColor {
- from { border-color: #e6e9eb; }
- to { border-color: #1e88e5; }
- }
- .mobile-size .animated .cp-summary-btn {
- -webkit-animation: click .15s 13.2s;
- animation: click .15s 13.2s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- /* Desktop Animation: Step 8: Server Deploying */
- .animated .cp-server-deploying {
- -webkit-animation: show .5s 10s, hide .5s 12s;
- animation: show .5s 10s, hide .5s 12s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .animated .cp-progress-bar {
- -webkit-animation: load 2s 10s;
- animation: load 2s 10s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-server-deploying {
- -webkit-animation: show .5s 13.4s, hide .5s 15.4s;
- animation: show .5s 13.4s, hide .5s 15.4s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- .mobile-size .animated .cp-progress-bar {
- -webkit-animation: load 2s 13.4s;
- animation: load 2s 13.4s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- /*
- .animated .play {
- -webkit-animation: show .5s 13.4s;
- animation: show .5s 13.4s;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- }
- */
- /*CSS Animations for browser */
- @-webkit-keyframes show {
- 0% {
- opacity: 0;
- visibility: hidden;
- }
- 100% {
- opacity: 1;
- visibility: visible;
- }
- }
- @keyframes show {
- 0% {
- opacity: 0;
- visibility: hidden;
- }
- 100% {
- opacity: 1;
- visibility: visible;
- }
- }
- @-webkit-keyframes hide {
- 0% {
- opacity: 1;
- visibility: visible;
- }
- 100% {
- opacity: 0;
- visibility: hidden;
- }
- }
- @keyframes hide {
- 0% {
- opacity: 1;
- visibility: visible;
- }
- 100% {
- opacity: 0;
- visibility: hidden;
- }
- }
- @-webkit-keyframes load {
- 0% {
- width: 0;
- }
- 100% {
- width: 154px;
- }
- }
- @keyframes load {
- 0% {
- width: 0;
- }
- 100% {
- width: 154px;
- }
- }
- @-webkit-keyframes click {
- 0% {
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
- 50% {
- background: #3ba3ff;
- -webkit-transform: scale3d(.8, .8, .8);
- transform: scale3d(.8, .8, .8);
- }
- 100% {
- background: #1e88e5;
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
- }
- @keyframes click {
- 0% {
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
- 50% {
- background: #3ba3ff;
- -webkit-transform: scale3d(.8, .8, .8);
- transform: scale3d(.8, .8, .8);
- }
- 100% {
- background: #1e88e5;
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
- }
- @keyframes cursorTap {
- 0% {
- opacity: 1;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- 100% {
- opacity: 0;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- @keyframes cursorMove {
- 0% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0)
- }
- 100% {
- -webkit-transform: translate3d(200px, -100px, 0);
- transform: translate3d(200px, -100px, 0);
- }
- }
- @keyframes cursorMove2 {
- 0% {
- -webkit-transform: translate3d(200px, -100px, 0);
- transform: translate3d(200px, -100px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-70px, 90px, 0);
- transform: translate3d(-70px, 90px, 0);
- }
- }
- @keyframes cursorMove3 {
- 0% {
- -webkit-transform: translate3d(-70px, 90px, 0);
- transform: translate3d(-70px, 90px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-370px, 70px, 0);
- transform: translate3d(-370px, 70px, 0);
- }
- }
- @keyframes cursorMove4 {
- 0% {
- -webkit-transform: translate3d(-370px, 70px, 0);
- transform: translate3d(-370px, 70px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-370px, 90px, 0);
- transform: translate3d(-370px, 90px, 0);
- }
- }
- @keyframes cursorMove5 {
- 0% {
- -webkit-transform: translate3d(-370px, 90px, 0);
- transform: translate3d(-370px, 90px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-370px, -20px, 0);
- transform: translate3d(-370px, -20px, 0);
- }
- }
- @keyframes cursorMove6 {
- 0% {
- -webkit-transform: translate3d(-370px, -20px, 0);
- transform: translate3d(-370px, -20px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-370px, 40px, 0);
- transform: translate3d(-370px, 40px, 0);
- }
- }
- @keyframes cursorMove7 {
- 0% {
- -webkit-transform: translate3d(-370px, 40px, 0);
- transform: translate3d(-370px, 40px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-300px, 280px, 0);
- transform: translate3d(-300px, 280px, 0);
- }
- }
- @keyframes cursorMove8 {
- 0% {
- -webkit-transform: translate3d(-300px, 280px, 0);
- transform: translate3d(-300px, 280px, 0);
- }
- 100% {
- -webkit-transform: translate3d(150px, 360px, 0);
- transform: translate3d(150px, 360px, 0);
- }
- }
- /* Content move for desktop */
- @keyframes contentMove {
- 0% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -200px, 0);
- transform: translate3d(0, -200px, 0);
- }
- }
- @keyframes contentMove2 {
- 0% {
- -webkit-transform: translate3d(0, -200px, 0);
- transform: translate3d(0, -200px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -580px, 0);
- transform: translate3d(0, -580px, 0);
- }
- }
- @keyframes contentMove3 {
- 0% {
- -webkit-transform: translate3d(0, -580px, 0);
- transform: translate3d(0, -580px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -800px, 0);
- transform: translate3d(0, -800px, 0);
- }
- }
- @keyframes contentMove4 {
- 0% {
- -webkit-transform: translate3d(0, -800px, 0);
- transform: translate3d(0, -800px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -910px, 0);
- transform: translate3d(0, -910px, 0);
- }
- }
- /* Cursor move for tablet */
- @keyframes tabletCursorMove {
- 0% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0)
- }
- 100% {
- -webkit-transform: translate3d(190px, -100px, 0);
- transform: translate3d(190px, -100px, 0);
- }
- }
- @keyframes tabletCursorMove2 {
- 0% {
- -webkit-transform: translate3d(200px, -100px, 0);
- transform: translate3d(200px, -100px, 0);
- }
- 100% {
- -webkit-transform: translate3d(100px, 90px, 0);
- transform: translate3d(100px, 90px, 0);
- }
- }
- @keyframes tabletCursorMove3 {
- 0% {
- -webkit-transform: translate3d(100px, 90px, 0);
- transform: translate3d(100px, 90px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-300px, -60px, 0);
- transform: translate3d(-300px, -60px, 0);
- }
- }
- @keyframes tabletCursorMove4 {
- 0% {
- -webkit-transform: translate3d(-300px, -60px, 0);
- transform: translate3d(-300px, -60px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-320px, -40px, 0);
- transform: translate3d(-320px, -40px, 0);
- }
- }
- @keyframes tabletCursorMove5 {
- 0% {
- -webkit-transform: translate3d(-320px, -40px, 0);
- transform: translate3d(-320px, -40px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-320px, -100px, 0);
- transform: translate3d(-320px, -100px, 0);
- }
- }
- @keyframes tabletCursorMove6 {
- 0% {
- -webkit-transform: translate3d(-320px, -100px, 0);
- transform: translate3d(-320px, -100px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-300px, 0px, 0);
- transform: translate3d(-300px, 0px, 0);
- }
- }
- @keyframes tabletCursorMove7 {
- 0% {
- -webkit-transform: translate3d(-300px, 30px, 0);
- transform: translate3d(-300px, 30px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-300px, 60px, 0);
- transform: translate3d(-300px, 60px, 0);
- }
- }
- @keyframes tabletCursorMove8 {
- 0% {
- -webkit-transform: translate3d(-300px, 240px, 0);
- transform: translate3d(-300px, 240px, 0);
- }
- 100% {
- -webkit-transform: translate3d(100px, 350px, 0);
- transform: translate3d(100px, 350px, 0);
- }
- }
- /* Content move for tablet */
- @keyframes tabletContentMove {
- 0% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -400px, 0);
- transform: translate3d(0, -400px, 0);
- }
- }
- @keyframes tabletContentMove2 {
- 0% {
- -webkit-transform: translate3d(0, -400px, 0);
- transform: translate3d(0, -400px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -720px, 0);
- transform: translate3d(0, -720px, 0);
- }
- }
- @keyframes tabletContentMove3 {
- 0% {
- -webkit-transform: translate3d(0, -720px, 0);
- transform: translate3d(0, -720px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -900px, 0);
- transform: translate3d(0, -900px, 0);
- }
- }
- @keyframes tabletContentMove4 {
- 0% {
- -webkit-transform: translate3d(0, -900px, 0);
- transform: translate3d(0, -900px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -1135px, 0);
- transform: translate3d(0, -1135px, 0);
- }
- }
- @keyframes tabletMenuBack {
- 0% {
- -webkit-transform: translate3d(0, -400px, 0);
- transform: translate3d(0, -400px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
- }
- /* Content move for tablet */
- @keyframes mobileContentMove {
- 0% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -150px, 0);
- transform: translate3d(0, -150px, 0);
- }
- }
- @keyframes mobileContentMove2 {
- 0% {
- -webkit-transform: translate3d(0, -150px, 0);
- transform: translate3d(0, -150px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -450px, 0);
- transform: translate3d(0, -450px, 0);
- }
- }
- @keyframes mobileContentMove3 {
- 0% {
- -webkit-transform: translate3d(0, -450px, 0);
- transform: translate3d(0, -450px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -1000px, 0);
- transform: translate3d(0, -1000px, 0);
- }
- }
- @keyframes mobileContentMove4 {
- 0% {
- -webkit-transform: translate3d(0, -1000px, 0);
- transform: translate3d(0, -1000px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -2400px, 0);
- transform: translate3d(0, -2400px, 0);
- }
- }
- @keyframes mobileContentMove5 {
- 0% {
- -webkit-transform: translate3d(0, -2400px, 0);
- transform: translate3d(0, -2400px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, -2650px, 0);
- transform: translate3d(0, -2650px, 0);
- }
- }
- /* Cursor move for mobile */
- @keyframes mobileCursorMove {
- 0% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0)
- }
- 100% {
- -webkit-transform: translate3d(85px, 15px, 0);
- transform: translate3d(85px, 15px, 0);
- }
- }
- @keyframes mobileCursorMove2 {
- 0% {
- -webkit-transform: translate3d(85px, 15px, 0);
- transform: translate3d(85px, 15px, 0);
- }
- 100% {
- -webkit-transform: translate3d(20px, 150px, 0);
- transform: translate3d(20px, 150px, 0);
- }
- }
- @keyframes mobileCursorMove3 {
- 0% {
- -webkit-transform: translate3d(20px, 150px, 0);
- transform: translate3d(20px, 150px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-40px, 115px, 0);
- transform: translate3d(-40px, 115px, 0);
- }
- }
- @keyframes mobileCursorMove4 {
- 0% {
- -webkit-transform: translate3d(-40px, 115px, 0);
- transform: translate3d(-40px, 115px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-40px, 135px, 0);
- transform: translate3d(-40px, 135px, 0);
- }
- }
- @keyframes mobileCursorMove5 {
- 0% {
- -webkit-transform: translate3d(-40px, 135px, 0);
- transform: translate3d(-40px, 135px, 0);
- }
- 100% {
- -webkit-transform: translate3d(-60px, 0px, 0);
- transform: translate3d(-60px, 0px, 0);
- }
- }
- @keyframes mobileCursorMove6 {
- 0% {
- -webkit-transform: translate3d(-60px, 0px, 0);
- transform: translate3d(-60px, 0px, 0);
- }
- 100% {
- -webkit-transform: translate3d(20px, 120px, 0);
- transform: translate3d(20px, 120px, 0);
- }
- }
- @keyframes mobileCursorMove7 {
- 0% {
- -webkit-transform: translate3d(20px, 120px, 0);
- transform: translate3d(20px, 120px, 0);
- }
- 100% {
- -webkit-transform: translate3d(20px, 210px, 0);
- transform: translate3d(20px, 210px, 0);
- }
- }
|