aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/profile/profile.component.css
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-03-22 19:53:56 +0100
committerSonja Galovic <galovicsonja@gmail.com>2022-03-22 19:53:56 +0100
commitc734e57e88280d7b05f46f7630b691b5b45c926b (patch)
tree822b9b1e064e312c3c3cb819f04af18b251d5d31 /frontend/src/app/_pages/profile/profile.component.css
parent31642f68564e67175301235546b74baf56ac5882 (diff)
MyProfile stranica korisnika v1. Servis user-info za dobavljanje i izmenu podataka o korisniku. Dodata klasa User.
Diffstat (limited to 'frontend/src/app/_pages/profile/profile.component.css')
-rw-r--r--frontend/src/app/_pages/profile/profile.component.css42
1 files changed, 42 insertions, 0 deletions
diff --git a/frontend/src/app/_pages/profile/profile.component.css b/frontend/src/app/_pages/profile/profile.component.css
index e69de29b..8c2ffa88 100644
--- a/frontend/src/app/_pages/profile/profile.component.css
+++ b/frontend/src/app/_pages/profile/profile.component.css
@@ -0,0 +1,42 @@
+body{margin-top:20px;
+background-color:#f2f6fc;
+color:#69707a;
+}
+.img-account-profile {
+ height: 10rem;
+}
+.rounded-circle {
+ border-radius: 50% !important;
+}
+.card {
+ box-shadow: 0 0.15rem 1.75rem 0 rgb(33 40 50 / 15%);
+}
+.card .card-header {
+ font-weight: 500;
+}
+.card-header:first-child {
+ border-radius: 0.35rem 0.35rem 0 0;
+}
+.card-header {
+ padding: 1rem 1.35rem;
+ margin-bottom: 0;
+ background-color: rgba(33, 40, 50, 0.03);
+ border-bottom: 1px solid rgba(33, 40, 50, 0.125);
+}
+.form-control, .dataTable-input {
+ display: block;
+ width: 100%;
+ padding: 0.875rem 1.125rem;
+ font-size: 0.875rem;
+ font-weight: 400;
+ line-height: 1;
+ color: #69707a;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #c5ccd6;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ border-radius: 0.35rem;
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}