diff --git a/AfRApay.Web/Pages/EditUser.cshtml b/AfRApay.Web/Pages/EditUser.cshtml index 743d31e..83c2049 100644 --- a/AfRApay.Web/Pages/EditUser.cshtml +++ b/AfRApay.Web/Pages/EditUser.cshtml @@ -48,18 +48,13 @@

Cards

-@if (!cards.Any()) { -
- No linked cards found. -
-} -else { +@{
@foreach (var card in cards) { -
+
- + Delete
@@ -87,5 +82,35 @@ else {
} + +
+
+ Add Card +
+
+
+
+
+
+
+
+
+

PLACEHOLDER

+

PLACEHOLDER

+ + VALID
THRU
+ 01/2038 +
+ +
+ +
+
+ +
+ +
+
+
} diff --git a/AfRApay.Web/Pages/Index.cshtml b/AfRApay.Web/Pages/Index.cshtml index 173d203..db87af1 100644 --- a/AfRApay.Web/Pages/Index.cshtml +++ b/AfRApay.Web/Pages/Index.cshtml @@ -67,10 +67,9 @@ @@ -84,7 +83,6 @@ -1.50€ +5€ +10€ - Link card Edit
diff --git a/AfRApay.Web/wwwroot/css/site.css b/AfRApay.Web/wwwroot/css/site.css index 3c89c70..92c4761 100644 --- a/AfRApay.Web/wwwroot/css/site.css +++ b/AfRApay.Web/wwwroot/css/site.css @@ -258,6 +258,17 @@ button.accept-policy { margin-bottom: 60px; } +.ghost-card { + filter:grayscale(100%) blur(4px); +} +.add-card-button { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 2; + filter: grayscale(0%) +} .hover-button { position: absolute; top: 50%; @@ -268,20 +279,13 @@ button.accept-policy { transition: .5s ease; z-index: 2; } -.hover-overlay { - position: absolute; - height: 100%; - width: 100%; - opacity: 0; - border-radius: 15px; - transition: .5s ease; - background-color: #808080; - z-index: 1; -} + .fake-card-wrapper:hover .hover-button { opacity: 1; visibility: visible; } -.fake-card-wrapper:hover .hover-overlay { - opacity: 0.75; + +.fake-card-wrapper:hover.blur-true .face-card{ + transition: 0.3s ease; + filter:blur(4px) grayscale(100%); } \ No newline at end of file