From 00624c5330f79b6c1d3a3d8c42ffdb9c5a8da0ab Mon Sep 17 00:00:00 2001 From: Mahyar Date: Sun, 11 Feb 2024 18:30:19 +0330 Subject: [PATCH] update --- assets/css/responsive.css | 4 +- assets/css/style.css | 102 ++++++++++++++++++++++++++++++++++++++ earn.html | 2 +- index.html | 10 ++-- login.html | 59 ++++++++++++++++++++++ 5 files changed, 171 insertions(+), 6 deletions(-) create mode 100644 login.html diff --git a/assets/css/responsive.css b/assets/css/responsive.css index cff6158..66f3bf7 100644 --- a/assets/css/responsive.css +++ b/assets/css/responsive.css @@ -2,7 +2,9 @@ body, .boost, .guid, - .frens { + .frens, + .earn, + .login-page { max-width: 450px; margin: 0 auto; background-color: #191919!important; diff --git a/assets/css/style.css b/assets/css/style.css index a56db70..7f78d90 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -708,4 +708,106 @@ body { } .frens-data-count span{ margin-right: 0.25rem; +} + + + + + +/* earn styles */ +.earn { + overflow-y: scroll!important; + background: linear-gradient(0deg, rgba(241,158,54,1) 2%, rgb(0, 0, 0) 45%); + background: linear-gradient(0deg, rgba(157,101,30,1) 5%, rgba(0,0,0,1) 45%); + background-repeat: no-repeat; + background-attachment: fixed; + color: #ffffff; + padding-bottom: 4rem; +} + +.earn-more { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin-top: 1rem; +} + +.earn-more img { + margin-bottom: 1.5rem; +} + +.earn-more h3 { + font-size: 1.5rem; +} + + + + + + + + + +/* login styles */ + +.login-page { + overflow-y: scroll!important; + background: linear-gradient(0deg, rgba(241,158,54,1) 2%, rgb(0, 0, 0) 45%); + background-repeat: no-repeat; + background-attachment: fixed; + color: #ffffff; + padding-bottom: 4rem; +} + +.login-coins, +.login-page-detail { + display: flex; + justify-content: center; + align-items: center; +} + +.login-page-detail { + margin-top: 1rem; + font-size: 1rem; + color: #c1c1c1; +} +.login-coins-count { + font-size: 2rem; + margin-left: 1rem; +} + +.login-form { + margin-top: 3rem; + padding: 0 2rem; +} +.login-form form { + padding: 2rem; + border-radius: 15px; + background-color: rgba(218, 218, 218, 0.2); + border: 2px solid rgba(218, 218, 218, 0.02); + display: flex; + flex-direction: column; + justify-content: center; + /* align-items: center; */ +} + +.login-form form label { + margin-bottom: 0.25rem; +} +.login-form form input { + outline: none; + background-color: rgba(218, 218, 218, 0.2); + border: 2px solid rgba(218, 218, 218, 0.02); + margin-bottom: 1rem; + padding: 0.75rem; + color: #ffffff; + border-radius: 10px; +} + +.submit-button { + border: none; + outline: none; + margin-top: 0.75rem; + background: linear-gradient(83deg, rgba(255,184,95,1) 3%, rgba(241,158,54,1) 28%, rgba(255,142,2,1) 91%); } \ No newline at end of file diff --git a/earn.html b/earn.html index 28c65d4..1296960 100644 --- a/earn.html +++ b/earn.html @@ -23,7 +23,7 @@
- +

Earn more coins

diff --git a/index.html b/index.html index 6dbdeee..6fb5dd2 100644 --- a/index.html +++ b/index.html @@ -28,10 +28,12 @@
- - - - + + + + + +
diff --git a/login.html b/login.html new file mode 100644 index 0000000..ca2a0c7 --- /dev/null +++ b/login.html @@ -0,0 +1,59 @@ + + + + + + Document + + + + + + + + +
+ + + + + + + +
+ +
+ + +
+ +
+ Sign up to save your rank and coins. +
+ +
+
+ + + + + + + + + + + + + +
+
+ + + + + + \ No newline at end of file