Compare commits

...

7 Commits

Author SHA1 Message Date
victorAnumudu 6787b17c12 adjusted task card height 2023-07-10 06:25:27 +01:00
CHIEFSOFT\ameye d4806702da home tezt 2023-07-08 16:16:16 -04:00
ameye 1d31c9298b Merge branch 'about-icon-text-center' of WrenchBoard/WrenchBoardMainSite into master 2023-07-02 21:45:04 +00:00
victorAnumudu 3771759ef8 made the heading text centralised 2023-07-02 20:55:52 +01:00
ameye c6d7ffe886 Merge branch 'service-page' of WrenchBoard/WrenchBoardMainSite into master 2023-07-02 12:09:29 +00:00
ameye 20cf996248 Merge branch 'current-job-space-fix' of WrenchBoard/WrenchBoardMainSite into master 2023-07-02 12:09:21 +00:00
victorAnumudu 5683e05af7 service page image height fixed 2023-07-01 20:52:22 +01:00
5 changed files with 22 additions and 15 deletions
+16 -4
View File
@@ -1735,7 +1735,7 @@ p {
font-weight: 500; font-weight: 500;
} }
.appie-hero-content .appie-title { .appie-hero-content .appie-title {
font-size: 60px; font-size: 53px;
line-height: 70px; line-height: 70px;
margin-top: 10px; margin-top: 10px;
margin-bottom: 22px; margin-bottom: 22px;
@@ -2348,14 +2348,16 @@ p {
} }
.appie-single-service { .appie-single-service {
padding: 50px 30px 43px; /* padding: 50px 30px 43px; */
padding: 30px;
background: #fff; background: #fff;
border-radius: 6px; border-radius: 6px;
transition: all linear 0.3s; transition: all linear 0.3s;
} }
@media only screen and (min-width: 992px) and (max-width: 1200px) { @media only screen and (min-width: 992px) and (max-width: 1200px) {
.appie-single-service { .appie-single-service {
padding: 50px 15px 43px; /* padding: 50px 15px 43px; */
padding: 30px;
} }
} }
.appie-single-service .icon { .appie-single-service .icon {
@@ -2505,6 +2507,7 @@ p {
font-weight: 700; font-weight: 700;
margin-top: 30px; margin-top: 30px;
margin-bottom: 10px; margin-bottom: 10px;
text-align: center;
} }
.appie-single-service-2 a { .appie-single-service-2 a {
font-size: 14px; font-size: 14px;
@@ -4239,17 +4242,26 @@ p {
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
} }
.mission-side-box { .mission-side-box {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
height: 100%; height: 750px;
width: 50%; width: 50%;
background-image: url(../images/mission-bg.png); background-image: url(../images/mission-bg.png);
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
} }
@media only screen and (max-width: 991px) {
.mission-side-box {
position: relative;
height: 500px;
width: 100%;
margin: 20px auto 0 auto;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) { @media only screen and (min-width: 768px) and (max-width: 991px) {
.appie-faq-8-area .faq-play-box { .appie-faq-8-area .faq-play-box {
-1
View File
@@ -14,7 +14,6 @@
.boxBorder{ .boxBorder{
border-color: aqua; border-color: aqua;
background-color: #f5f6f7 ; background-color: #f5f6f7 ;
height:300px;
} }
.appie-loader { .appie-loader {
opacity: 0; opacity: 0;
+2 -2
View File
@@ -16,9 +16,9 @@ function HeroHomeOne() {
<div className="row align-items-center"> <div className="row align-items-center">
<div className="col-lg-6"> <div className="col-lg-6">
<div className="appie-hero-content"> <div className="appie-hero-content">
<span>Welcome To WrenchBoard..</span> {/*<span>Welcome To WrenchBoard..</span>*/}
<h1 className="appie-title"> <h1 className="appie-title">
Earn Money with Any Skill. Turn Chores into Exciting Challenges and Earn Rewards!
</h1> </h1>
<p> <p>
The Marketplace platform to earn money with your skills, find, buy and sell professional services. Connect, build an outstanding portfolio and link to an integrated community with best services via a digital platform. The Marketplace platform to earn money with your skills, find, buy and sell professional services. Connect, build an outstanding portfolio and link to an integrated community with best services via a digital platform.
+3 -3
View File
@@ -64,13 +64,13 @@ titleLen(title){
var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
var postDt = new Date(i.expire).toLocaleDateString("en-US", options); var postDt = new Date(i.expire).toLocaleDateString("en-US", options);
return (<div className="col-lg-3 col-md-6"> return (<div className="col-md-6 col-xl-3">
<div <div
className="appie-single-service mt-30 wow animated fadeInUp boxBorder d-flex align-items-center" className="appie-single-service container-fluid mt-30 wow animated fadeInUp boxBorder d-flex align-items-center"
data-wow-duration="3000ms" data-wow-duration="3000ms"
data-wow-delay="200ms" data-wow-delay="200ms"
> >
<div className="content d-flex flex-column justify-content-between align-items-center" style={{height: '260px'}}> <div className="content d-flex flex-column justify-content-between" style={{height: '200px', width: '100%'}}>
<div className="titleBox"> <div className="titleBox">
<h3 className="title"> <h3 className="title">
<a href={dashUrl}> <a href={dashUrl}>
+1 -5
View File
@@ -100,11 +100,7 @@ function MissionStatement() {
</div> </div>
</div> </div>
</div> </div>
<div className="mission-side-box"></div>
<div className="mission-side-box">
</div>
</div> </div>
</> </>
); );