diff --git a/Mohem/src/app/app.component.scss b/Mohem/src/app/app.component.scss
index d7546a03..f10468fa 100644
--- a/Mohem/src/app/app.component.scss
+++ b/Mohem/src/app/app.component.scss
@@ -222,7 +222,9 @@ header
margin-left: 0.2cm;
}
-
+ion-content {
+ --background: #fff;
+}
.sidebar-menu .header-div {
@@ -232,6 +234,7 @@ header
display: block;
margin-bottom: -10px;
top: 40px;
+
}
.list-en {
@@ -289,7 +292,7 @@ button.menu-item.item.item-block.item-ios {
padding: 0;
text-align: center;
font-weight: bolder;
- color: black;
+ color: var(--primary);
font-size: 18px;
}
@@ -369,8 +372,8 @@ ion-thumbnail.menu-thumb {
}
.profile {
- color: black !important;
- font-weight: bolder !important;
+ color: #5C6F79 !important;
+
}
diff --git a/Mohem/src/app/authentication/login/login.component.html b/Mohem/src/app/authentication/login/login.component.html
index bbac6512..bc2ff167 100644
--- a/Mohem/src/app/authentication/login/login.component.html
+++ b/Mohem/src/app/authentication/login/login.component.html
@@ -16,14 +16,14 @@
-
-
{{value}}
-
{{text}}
+
diff --git a/Mohem/src/app/hmg-common/ui/card-filter/card-filter.component.scss b/Mohem/src/app/hmg-common/ui/card-filter/card-filter.component.scss
index 1c67af05..02bb12f9 100644
--- a/Mohem/src/app/hmg-common/ui/card-filter/card-filter.component.scss
+++ b/Mohem/src/app/hmg-common/ui/card-filter/card-filter.component.scss
@@ -1,4 +1,4 @@
-.main-container{
+.main-container {
width: 72px;
background-color: white;
padding: 10px;
@@ -7,10 +7,12 @@
text-align: right;
font-family: WorkSans-Regular;
padding-top: 25px;
- box-shadow: 0 0 6px rgba(0,0,0,0.16);
+ box-shadow: 0px 1px 5px #00000012;
position: relative;
+ border: 1px solid #D0D4D696;
}
-.main-container-radius{
+
+.main-container-radius {
// content: "";
position: absolute;
width: 30px;
@@ -20,14 +22,16 @@
left: 10px;
top: 10px;
}
-.number-span{
+
+.number-span {
font-size: 19px;
display: block;
line-height: 18px;
+ color: #004D71;
}
-.text-span{
+.text-span {
font-size: 14px;
- color: #888;
+ color: #5C6F79;
margin: -1px;
-}
+}
\ No newline at end of file
diff --git a/Mohem/src/app/hmg-common/ui/services-button/services-button.component.scss b/Mohem/src/app/hmg-common/ui/services-button/services-button.component.scss
index aa13c49f..750fb973 100644
--- a/Mohem/src/app/hmg-common/ui/services-button/services-button.component.scss
+++ b/Mohem/src/app/hmg-common/ui/services-button/services-button.component.scss
@@ -1,12 +1,12 @@
.custom-button {
background: #FCFCFC 0% 0% no-repeat padding-box;
margin-bottom: 5px;
- box-shadow: 2px 2px 6px #00000029;
+ box-shadow: 0px 1px 5px #0000000F;
width: 100%;
- max-width: 105px;
- height: 100px;
+ max-width: 115px;
+ height: 105px;
padding: 10px;
- min-width: 96px;
+ min-width: 105px;
border: 1px solid #D0D4D6;
border-radius: 25px;
}
@@ -19,9 +19,10 @@
}
.iconBox img {
- margin: 0px auto 10px;
+ margin: 7px auto 3px;
display: inline-block;
- width: 35px;
+ width: 30px;
+ height: 30px;
// max-width: 35%;
}
@@ -30,9 +31,9 @@
}
.pClass {
- font-size: 9px;
+ font-size: 12px;
text-align: center;
margin-top: 10px;
- color: black;
+ color: var(--primary);
font-weight: bold;
}
\ No newline at end of file
diff --git a/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss b/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss
index 0fd4bb4f..b806e57c 100644
--- a/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss
+++ b/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss
@@ -1,19 +1,22 @@
.custom-button {
background: white;
- margin-bottom: 5px;
+ margin-bottom: 10px;
border: 1px solid #D0D4D6;
border-radius: 20px;
- width: 200px;
+ width: 120px;
max-width: 105px;
height: 160px;
padding: 10px;
- box-shadow: 2px 2px 6px #00000029;
+ max-height: 145px;
+ box-shadow: 0px 0px 20px #00000029;
+
}
.iconBox {
display: block;
width: 100%;
position: static;
+ height: 47px;
img {
// display: block;
@@ -24,7 +27,7 @@
max-width: 67%;
padding-bottom: 9px;
padding-top: 5px;
- height: 47px;
+ height: 44px;
}
}
@@ -34,7 +37,7 @@
span {
font-size: 25px;
font-weight: bold;
- color: black;
+ color: var(--primary);
text-align: center;
display: block;
}
@@ -44,8 +47,9 @@ ion-app[dir="rtl"] .titleBox {
text-align: right;
}
+
.pClass {
- color: black;
+ color: var(--primary);
width: 100%;
margin-top: 5px;
font-weight: bold;
diff --git a/Mohem/src/app/home/home.page.html b/Mohem/src/app/home/home.page.html
index 562c27c4..4af77229 100644
--- a/Mohem/src/app/home/home.page.html
+++ b/Mohem/src/app/home/home.page.html
@@ -47,18 +47,18 @@
-
+
-
{{ts.trPK('work-list','total')}}
{{ts.trPK('work-list','open-reqest')}}
+
+
{{ts.trPK('work-list','open-reqest')}}