From 5d8a4a3803fa908c80a91bc2b35ca2f57e093507 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Sat, 24 Jul 2021 14:47:40 -0500 Subject: [PATCH] Updated styling. --- .../Areas/Identity/Pages/Account/Login.cshtml | 109 +++++++++--------- .../Identity/Pages/Account/Register.cshtml | 88 +++++++------- Props/Pages/Search.cshtml | 14 +-- Props/assets/styles/_variables.scss | 14 ++- Props/assets/styles/site-wide.scss | 10 +- 5 files changed, 120 insertions(+), 115 deletions(-) diff --git a/Props/Areas/Identity/Pages/Account/Login.cshtml b/Props/Areas/Identity/Pages/Account/Login.cshtml index 49b154e..8a88f7c 100644 --- a/Props/Areas/Identity/Pages/Account/Login.cshtml +++ b/Props/Areas/Identity/Pages/Account/Login.cshtml @@ -5,68 +5,69 @@ ViewData["Title"] = "Log in"; } -
-
- Props logo -

@ViewData["Title"]

-
-
-
-

Use a local account to log in.

-
-
-
- - - +
+ Props logo +

@ViewData["Title"]

+

Welcome back!

+
+
+
+
+ +

Use a local account to log in.

+
+
+
+ + + +
+
+ + + +
+
+
+ +
-
- - - +
+
+ +
+
+ -
-
- - -
+ -
- + +
+ +
+ @if ((Model.ExternalLogins?.Count ?? 0) != 0) + { +
+

Use another service to log in.

+
+
- - - +

+ @foreach (var provider in Model.ExternalLogins) + { + + } +

- @if ((Model.ExternalLogins?.Count ?? 0) != 0) - { -
-

Use another service to log in.

-
-
-
-

- @foreach (var provider in Model.ExternalLogins) - { - - } -

-
-
-
- } -
+ }
diff --git a/Props/Areas/Identity/Pages/Account/Register.cshtml b/Props/Areas/Identity/Pages/Account/Register.cshtml index f690509..37d58f0 100644 --- a/Props/Areas/Identity/Pages/Account/Register.cshtml +++ b/Props/Areas/Identity/Pages/Account/Register.cshtml @@ -3,53 +3,53 @@ @{ ViewData["Title"] = "Register"; } - -
-
- Props logo -

@ViewData["Title"]

-
-
-
-

Create a new account.

-
-
-
- - - +
+ Props logo +

@ViewData["Title"]

+

Create more projects and access them across your devices! Join the community and show off your projects to the world!

+
+
+
+
+ +

Create a new account.

+
+
+
+ + + +
+
+ + + +
+
+ + + +
+ + +
+ @if ((Model.ExternalLogins?.Count ?? 0) != 0) + { +
+

Use another service to register.

+
+
+
+

+ @foreach (var provider in Model.ExternalLogins) + { + + } +

-
- - - -
-
- - - -
-
- @if ((Model.ExternalLogins?.Count ?? 0) != 0) - { -
-

Use another service to register.

-
-
-
-

- @foreach (var provider in Model.ExternalLogins) - { - - } -

-
-
-
- } -
+ }
diff --git a/Props/Pages/Search.cshtml b/Props/Pages/Search.cshtml index 3ea7962..3a33b80 100644 --- a/Props/Pages/Search.cshtml +++ b/Props/Pages/Search.cshtml @@ -4,25 +4,25 @@ ViewData["Specific"] = "Search"; } -
+
- +
-
-
+
+
-
+

Shops Enabled

diff --git a/Props/assets/styles/_variables.scss b/Props/assets/styles/_variables.scss index 8649f20..aa14b1c 100644 --- a/Props/assets/styles/_variables.scss +++ b/Props/assets/styles/_variables.scss @@ -1,12 +1,14 @@ $themes: ( "light": ( - "background": #f4f4f4, - "navbar": #FFF8F8, - "main": #BDF2D5, + "background": #ebf0ef, + "navbar": #E6F4F1, + "navbar-link": #005780, + "navbar-active": #001f2e, + "main": #B4EEFF, "footer": #F2F2F2, - "sub": #F4FCFC, - "bold": #647b9b, - "text": #1A1A1A, + "sub": #EEFBFF, + "text": #1A1A1A, + "special": #00A2EF, "muted": #797a7e, ), ); diff --git a/Props/assets/styles/site-wide.scss b/Props/assets/styles/site-wide.scss index 572bae7..43df9db 100644 --- a/Props/assets/styles/site-wide.scss +++ b/Props/assets/styles/site-wide.scss @@ -12,12 +12,15 @@ header > nav { .nav-link, .navbar-brand { @include themer.themed { - color: themer.color-of("bold"); + color: themer.color-of("navbar-link"); } &.active { @include themer.themed { - color: themer.color-of("text"); + color: themer.color-of("navbar-active"); + border-color: themer.color-of("navbar-active"); } + border-bottom-style: solid; + border-bottom-width: 1px; } } @@ -34,7 +37,6 @@ main { flex-direction: column; .tear { - @extend .p-3; border-top: 1px; border-top-style: solid; border-bottom: 1px; @@ -92,7 +94,7 @@ footer { hr.concise { @extend .my-3; @include themer.themed { - color: themer.color-of("bold"); + color: themer.color-of("special"); } width: 15%; max-width: 160px;