diff --git a/src/app/pages/home/home.page.scss b/src/app/pages/home/home.page.scss index fe37c47..3928bb5 100644 --- a/src/app/pages/home/home.page.scss +++ b/src/app/pages/home/home.page.scss @@ -260,6 +260,7 @@ ion-content { height: 150px; width: 100%; border-radius: 15px; + //background-color: #8b198e; } } @@ -338,6 +339,15 @@ ion-content { box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1); border-radius: 10px; margin-bottom: 20px; + &.OFFERS{ + background-color: #400741; + .name{ + color: white; + } + .bg_text{ + --background-color: white; + } + } &.PASTDUEJOB{ background-color: #e0b4b4; } diff --git a/src/app/pages/joboffers/joboffers.page.html b/src/app/pages/joboffers/joboffers.page.html index 8c498dd..c9a444f 100644 --- a/src/app/pages/joboffers/joboffers.page.html +++ b/src/app/pages/joboffers/joboffers.page.html @@ -11,53 +11,100 @@ +
+
+
+ You have {{total_offers}} Offer(s) + +
+ +
+
+ + + + + {{item.title}} + + +
+
{{item.title}}
+
Expiration : {{item.expire | date}}
+
Price : {{item.price*0.01| number : '1.2-2'}} {{item.currency}}
+
+ +
+ {{item.job_description}} +
+ + +
+
+ + + + + + Reject + + + + + + Start Now + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+
-
-
- You have {{total_offers}} Offer(s) - -
- -
- - {{item.title}} - -
- - {{item.title}} - Expiration:{{item.expire | date}} - - - - {{item.job_description}} - - - - - - Reject - - - - - - Start Now - - - - - -
- - - -
diff --git a/src/app/pages/joboffers/joboffers.page.scss b/src/app/pages/joboffers/joboffers.page.scss index 577688c..0f03041 100644 --- a/src/app/pages/joboffers/joboffers.page.scss +++ b/src/app/pages/joboffers/joboffers.page.scss @@ -1,5 +1,42 @@ ion-content { + .offers_div{ + background-color: aliceblue; + border-radius: 10px; + border-color: #383a3e; + margin: 10px 0 10px 0; + .offer_title{ + font-size: 18px; + font-weight: bolder; + } + .action_area{ + background-color:whitesmoke; + } + .offer_banner{ + border-radius: 100%; + background-color: white; + } + .price{ + margin-top: 5px; + margin-bottom: 5px; + color:green; + font-size: 14px; + } + .expire{ + font-weight: bold; + color: red; + font-size: 10px; + } + .detail_txt{ + font-size: 14px; + margin: 5px; + font-weight: bold; + background-color: white; + border-radius: 10px; + min-height: 120px; + padding: 3px; + } + } .back_image { width: 100%; height: 100px; diff --git a/src/global.scss b/src/global.scss index 3aa5d69..ba7e54b 100644 --- a/src/global.scss +++ b/src/global.scss @@ -286,4 +286,4 @@ ion-content{ color: #8b198e; font-weight: bolder; } -} \ No newline at end of file +}