123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664 |
- @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Open+Sans:wght@300&display=swap');
- @import url('https://fonts.googleapis.com/css2?family=Hubballi&display=swap');
- body,
- html {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- }
- body {
- /* background: #16181d; */
- font-family: Hubballi;
- }
- .bg {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- position: fixed;
- z-index: -2;
- background: #111;
- }
- .bg_inner {
- width: 90%;
- height: 90%;
- padding: 0;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- position: fixed;
- z-index: -1;
- border-radius: 50%;
- background: rgb(127, 35, 112);
- filter: blur(100px);
- transition: background .5s ease;
- }
- #sky {
- width: 100vw;
- height: 100vh;
- position: fixed;
- overflow: hidden;
- margin: 0;
- padding: 0;
- }
- #shootingstars {
- margin: 0;
- padding: 0;
- width: 150vh;
- height: 100vw;
- position: fixed;
- overflow: hidden;
- transform: translatex(calc(50vw - 50%)) translatey(calc(50vh - 50%)) rotate(120deg);
- }
- .wish {
- height: 2px;
- top: 300px;
- width: 100px;
- margin: 0;
- opacity: 0;
- padding: 0;
- background-color: white;
- position: absolute;
- background: linear-gradient(-45deg, white, rgba(0, 0, 255, 0));
- filter: drop-shadow(0 0 6px white);
- overflow: hidden;
- }
- .title {
- font-size: 50px;
- font-family: Hubballi;
- text-align: center;
- color: #fff;
- width: 100%;
- z-index: 2;
- position: relative;
- height: 50px;
- line-height: 50px;
- }
- .description {
- font-size: 24px;
- color: #eee;
- text-align: center;
- width: 100%;
- z-index: 2;
- position: relative;
- padding-top: 20px;
- line-height: 1.3;
- font-family: Hubballi;
- }
- .wrapper {
- width: 100%;
- height: 100%;
- position: absolute;
- justify-content: center;
- align-items: center;
- display: flex;
- flex-direction: column;
- }
- #root {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- margin: auto;
- }
- .darken {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: 1;
- background: rgba(0, 0, 0, .1);
- top: 0;
- bottom: 0;
- right: 0;
- left: 0;
- margin: auto;
- }
- .main_content {
- display: none;
- }
- .center {
- justify-content: center;
- align-items: center;
- display: flex;
- position: relative;
- z-index: 2;
- margin-top: 20px;
- }
- .blur {
- padding: 4rem 6rem;
- border-radius: 0.375rem;
- background-color: rgba(22, 24, 29, .5);
- border: 1px solid rgba(42, 46, 55, 1);
- backdrop-filter: blur(6px);
- position: relative;
- z-index: 99;
- }
- @media screen and (max-width: 736px) {
- .blur {
- width: 100%;
- height: 100%;
- padding: 1.5rem;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .title {
- height: auto;
- line-height: auto;
- }
- .finish_block,
- .auth {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- }
- @keyframes floating {
- from {
- transform: translateY(-10px);
- }
- 50% {
- transform: translateY(10px);
- }
- to {
- transform: translateY(-10px);
- }
- }
- .button {
- border-radius: 3px;
- padding: 10px 20px;
- border: none;
- color: #eee;
- margin: 5px 0;
- background: transparent;
- border: 1px solid #aaa;
- cursor: pointer;
- transition: box-shadow .2s ease;
- user-select: none;
- min-height: 42px;
- box-sizing: border-box;
- }
- .button:hover {
- box-shadow: inset 3px 3px 1px rgba(255, 255, 255, .1), inset -3px -3px 1px rgba(255, 255, 255, .1);
- }
- input {
- outline: none;
- color: #fff;
- text-align: center;
- border-radius: 5px;
- padding: 10px 20px;
- border: none;
- background: transparent;
- border: 1px solid #aaa;
- transition: box-shadow .2s ease;
- }
- input:focus {
- box-shadow: inset 3px 3px 1px rgba(255, 255, 255, .1), inset -3px -3px 1px rgba(255, 255, 255, .1);
- }
- label {
- margin: 0 10px;
- color: #eee;
- user-select: none;
- }
- #continue_btn,
- #block_api_id,
- #block_api_hash,
- #block_phone,
- #block_2fa,
- #block_custom_bot {
- display: none;
- }
- .red_state .bg_inner {
- background: rgb(148, 55, 55);
- }
- .horiz_center {
- justify-content: center;
- align-items: center;
- display: flex;
- }
- .vert_center {
- justify-content: center;
- align-items: center;
- display: flex;
- flex-direction: column;
- }
- #installation_icon {
- height: 200px;
- margin-bottom: 35px;
- }
- .light {
- position: absolute;
- width: 3px;
- filter: blur(4px);
- top: 100vh;
- bottom: 0px;
- left: 0px;
- right: 0px;
- margin: auto;
- z-index: -1;
- background: #fff;
- }
- .x1 {
- filter: blur(3px);
- -webkit-animation: floatUp 4s infinite linear;
- -moz-animation: floatUp 4s infinite linear;
- -o-animation: floatUp 4s infinite linear;
- animation: floatUp 4s infinite linear;
- -webkit-transform: scale(1.0);
- -moz-transform: scale(1.0);
- -o-transform: scale(1.0);
- transform: scale(1.0);
- }
- .x2 {
- filter: blur(3px);
- -webkit-animation: floatUp 7s infinite linear;
- -moz-animation: floatUp 7s infinite linear;
- -o-animation: floatUp 7s infinite linear;
- animation: floatUp 7s infinite linear;
- -webkit-transform: scale(1.6);
- -moz-transform: scale(1.6);
- -o-transform: scale(1.6);
- transform: scale(1.6);
- left: 15%;
- }
- .x3 {
- filter: blur(3px);
- -webkit-animation: floatUp 2.5s infinite linear;
- -moz-animation: floatUp 2.5s infinite linear;
- -o-animation: floatUp 2.5s infinite linear;
- animation: floatUp 2.5s infinite linear;
- -webkit-transform: scale(.5);
- -moz-transform: scale(.5);
- -o-transform: scale(.5);
- transform: scale(.5);
- left: -15%;
- }
- .x4 {
- filter: blur(5px);
- -webkit-animation: floatUp 4.5s infinite linear;
- -moz-animation: floatUp 4.5s infinite linear;
- -o-animation: floatUp 4.5s infinite linear;
- animation: floatUp 4.5s infinite linear;
- -webkit-transform: scale(1.2);
- -moz-transform: scale(1.2);
- -o-transform: scale(1.2);
- transform: scale(1.2);
- left: -34%;
- }
- .x5 {
- filter: blur(6px);
- -webkit-animation: floatUp 8s infinite linear;
- -moz-animation: floatUp 8s infinite linear;
- -o-animation: floatUp 8s infinite linear;
- animation: floatUp 8s infinite linear;
- -webkit-transform: scale(2.2);
- -moz-transform: scale(2.2);
- -o-transform: scale(2.2);
- transform: scale(2.2);
- left: -57%;
- }
- .x6 {
- filter: blur(4px);
- -webkit-animation: floatUp 3s infinite linear;
- -moz-animation: floatUp 3s infinite linear;
- -o-animation: floatUp 3s infinite linear;
- animation: floatUp 3s infinite linear;
- -webkit-transform: scale(.8);
- -moz-transform: scale(.8);
- -o-transform: scale(.8);
- transform: scale(.8);
- left: -81%;
- }
- .x7 {
- filter: blur(3px);
- -webkit-animation: floatUp 5.3s infinite linear;
- -moz-animation: floatUp 5.3s infinite linear;
- -o-animation: floatUp 5.3s infinite linear;
- animation: floatUp 5.3s infinite linear;
- -webkit-transform: scale(3.2);
- -moz-transform: scale(3.2);
- -o-transform: scale(3.2);
- transform: scale(3.2);
- left: 37%;
- }
- .x8 {
- filter: blur(6px);
- -webkit-animation: floatUp 4.7s infinite linear;
- -moz-animation: floatUp 4.7s infinite linear;
- -o-animation: floatUp 4.7s infinite linear;
- animation: floatUp 4.7s infinite linear;
- -webkit-transform: scale(1.7);
- -moz-transform: scale(1.7);
- -o-transform: scale(1.7);
- transform: scale(1.7);
- left: 62%;
- }
- .x9 {
- filter: blur(3px);
- -webkit-animation: floatUp 4.1s infinite linear;
- -moz-animation: floatUp 4.1s infinite linear;
- -o-animation: floatUp 4.1s infinite linear;
- animation: floatUp 4.1s infinite linear;
- -webkit-transform: scale(0.9);
- -moz-transform: scale(0.9);
- -o-transform: scale(0.9);
- transform: scale(0.9);
- left: 85%;
- }
- @keyframes floatUp {
- 0% {
- top: 100vh;
- opacity: 0;
- }
- 25% {
- opacity: 1;
- }
- 50% {
- top: 0vh;
- opacity: .8;
- }
- 75% {
- opacity: 1;
- }
- 100% {
- top: -100vh;
- opacity: 0;
- }
- }
- .gg-add {
- box-sizing: border-box;
- position: relative;
- display: block;
- width: 20px;
- height: 20px;
- border: 1px solid;
- transform: scale(var(--ggs, 1));
- border-radius: 20px
- }
- .gg-add::after,
- .gg-add::before {
- content: "";
- display: block;
- box-sizing: border-box;
- position: absolute;
- width: 9px;
- height: 1px;
- background: currentColor;
- border-radius: 5px;
- top: 9px;
- left: 5px
- }
- .gg-add::after {
- width: 1px;
- height: 9px;
- top: 5px;
- left: 9px
- }
- .gg-brackets {
- box-sizing: border-box;
- position: relative;
- display: block;
- transform: scale(var(--ggs, 1));
- width: 18px;
- height: 18px;
- border: 1px solid;
- border-radius: 2px
- }
- .gg-brackets::after,
- .gg-brackets::before {
- content: "";
- display: block;
- box-sizing: border-box;
- position: absolute;
- border: 1px solid;
- width: 4px;
- height: 11px;
- top: 2px
- }
- .gg-brackets::before {
- border-right: 0;
- left: 3px
- }
- .gg-brackets::after {
- border-left: 0;
- right: 3px
- }
- .gg-chevron-right-o {
- box-sizing: border-box;
- position: relative;
- display: block;
- transform: scale(var(--ggs, 1));
- width: 20px;
- height: 20px;
- border: 1px solid;
- border-radius: 100px
- }
- .gg-chevron-right-o::after {
- content: "";
- display: block;
- box-sizing: border-box;
- position: absolute;
- width: 6px;
- height: 6px;
- border-bottom: 1px solid;
- border-right: 1px solid;
- transform: rotate(-45deg);
- left: 5px;
- top: 6px
- }
- .button i {
- margin-left: .5em;
- }
- .button {
- margin: 10px 5px;
- }
- .mountains {
- display: none;
- }
- #tg_icon {
- height: 40vh;
- }
- .auth {
- position: absolute;
- top: 0;
- bottom: 0;
- right: 0;
- left: 0;
- margin: auto;
- width: 70%;
- height: 60%;
- padding: 2rem;
- display: none;
- }
- @media screen and (max-width: 736px) {
- .auth {
- width: 100%;
- height: 100%;
- margin: 0;
- }
- }
- .confirm_auth {
- font-size: 36px;
- text-align: center;
- color: #fff;
- padding: 10px 0;
- }
- .waiting_for_auth {
- font-size: 22px;
- text-align: center;
- color: #fff;
- padding: 15px 0;
- }
- .finish_block {
- display: none;
- }
- .lights {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- z-index: -1;
- overflow: hidden;
- }
- .auth-code-form {
- display: none;
- width: 60%;
- height: 80%;
- padding: 0;
- border-radius: 15px;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- margin: auto;
- z-index: 101;
- text-align: center;
- }
- @media screen and (max-width: 736px) {
- .auth-code-form {
- width: 100%;
- height: 100%;
- }
- }
- .enter {
- padding: 5px 10px;
- border: 1px solid #dc137b;
- color: #dc137b;
- font-size: 30px;
- border-radius: 8px;
- width: 50%;
- margin-left: 25%;
- margin-top: 10px;
- box-sizing: border-box;
- transition: all .15s ease;
- display: none;
- }
- @media screen and (max-width: 736px) {
- .enter {
- display: block;
- }
- }
- .enter.tgcode {
- display: none;
- }
- .enter:active {
- background: #dc137b;
- color: #fff;
- }
- #monkey,
- #monkey-close {
- height: 200px;
- margin-top: 30px;
- }
- #monkey-close {
- display: none;
- }
- .code-input {
- width: 50%;
- margin-top: 25px;
- height: 32px;
- border-radius: 15px;
- border: 1px solid #121212;
- background: #212121;
- transition: border .2s ease-in;
- font-size: 18px;
- }
- .code-input:focus {
- border: 2px solid rgb(135, 116, 225);
- }
- .code-caption {
- font-size: 26px;
- color: #fefefe;
- padding-top: 50px;
- }
|