From 95d13c57b3a74ce96c9c99b06c83377e07a618dd Mon Sep 17 00:00:00 2001 From: Art Date: Mon, 20 Sep 2021 16:09:35 +0300 Subject: [PATCH] 155. Adding page header (#21 Section 22: User Page - Display User Info) --- .../app/component/user/user.component.html | 33 ++++++++++++++++- support-portal-frontend/src/styles.css | 35 +++++++++++++++++++ 2 files changed, 67 insertions(+), 1 deletion(-) diff --git a/support-portal-frontend/src/app/component/user/user.component.html b/support-portal-frontend/src/app/component/user/user.component.html index d039bb7..1dce686 100644 --- a/support-portal-frontend/src/app/component/user/user.component.html +++ b/support-portal-frontend/src/app/component/user/user.component.html @@ -1 +1,32 @@ -

user works!

+
+
+
+
+
+
User Management Portal
+ +
+
+
+
+ + + +
diff --git a/support-portal-frontend/src/styles.css b/support-portal-frontend/src/styles.css index a42e12d..a66c76e 100644 --- a/support-portal-frontend/src/styles.css +++ b/support-portal-frontend/src/styles.css @@ -2,3 +2,38 @@ @import 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css'; @import 'https://pro.fontawesome.com/releases/v5.10.0/css/all.css'; @import "~angular-notifier/styles"; + +td { + cursor: pointer; +} + +.move-right { + position: absolute; + right: 0; +} + +.move-left { + position: absolute; + left: 0; +} + +.btn-file { + position: relative; + overflow: hidden; +} + +.btn-file input[type=file] { + position: absolute; + top: 0; + right: 0; + min-width: 100%; + min-height: 100%; + font-size: 100px; + text-align: right; + filter: alpha(opacity=0); + opacity: 0; + outline: none; + background: white; + cursor: inherit; + display: block; +}