Commit d4f85cfb by abraham

Merge branch 'abraham' into 'master'

Abraham See merge request !3
parents 1deec49d 30f6352e
...@@ -67,19 +67,19 @@ ...@@ -67,19 +67,19 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-md-3"> <div class="col-md-3">
<h3>300+</h3> <h3><span class="count">300</span>+</h3>
<h5>Active Clients</h5> <h5>Active Clients</h5>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<h3>5000+</h3> <h3><span class="count">5000</span>+</h3>
<h5>Sales</h5> <h5>Sales</h5>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<h3>35+</h3> <h3><span class="count">35</span>+</h3>
<h5>Products</h5> <h5>Products</h5>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<h3>80%+</h3> <h3><span class="count">80</span>%</h3>
<h5>Satisfied Clients</h5> <h5>Satisfied Clients</h5>
</div> </div>
</div> </div>
......
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
h5{ h5{
text-align: center !important; text-align: center !important;
object-fit: contain; object-fit: contain;
font-family: Myriad Pro; font-family: Roboto;
font-size: 27.5px; font-size: 27.5px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
......
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import * as $ from 'jquery';
@Component({ @Component({
selector: 'app-aboutus', selector: 'app-aboutus',
templateUrl: './aboutus.component.html', templateUrl: './aboutus.component.html',
...@@ -7,9 +7,22 @@ import { Component, OnInit } from '@angular/core'; ...@@ -7,9 +7,22 @@ import { Component, OnInit } from '@angular/core';
}) })
export class AboutusComponent implements OnInit { export class AboutusComponent implements OnInit {
constructor() { } constructor() {
}
ngOnInit() { ngOnInit() {
$('.count').each(function () {
$(this).prop('Counter',0).animate({
Counter: $(this).text()
}, {
duration: 12000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
} }
} }
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
.map_contents{ .map_contents{
padding-top: 300px; padding-top: 300px;
padding-bottom: 250px; padding-bottom: 250px;
.slick_main{
.row{ .row{
.col-md-5{ .col-md-5{
display: flex; display: flex;
...@@ -102,6 +103,7 @@ ...@@ -102,6 +103,7 @@
color: #ffffff; color: #ffffff;
img{ img{
padding-left: 3px; padding-left: 3px;
display: inline;
} }
} }
} }
...@@ -119,6 +121,7 @@ ...@@ -119,6 +121,7 @@
} }
} }
} }
}
} }
.our_products{ .our_products{
background-color: #ffffff; background-color: #ffffff;
...@@ -326,6 +329,8 @@ hr{ ...@@ -326,6 +329,8 @@ hr{
margin: 0 auto; margin: 0 auto;
margin-bottom: 75px; margin-bottom: 75px;
padding-top: 36px; padding-top: 36px;
ngx-slick-carousel{
.rating_slide{
.rating_review_box_one{ .rating_review_box_one{
margin: 23px 16px 24px 16px; margin: 23px 16px 24px 16px;
.row{ .row{
...@@ -398,4 +403,6 @@ hr{ ...@@ -398,4 +403,6 @@ hr{
} }
} }
} }
}
}
} }
\ No newline at end of file
...@@ -11,5 +11,6 @@ export class LandingpageComponent implements OnInit { ...@@ -11,5 +11,6 @@ export class LandingpageComponent implements OnInit {
ngOnInit() { ngOnInit() {
} }
slideConfig = {"slidesToShow": 1, "slidesToScroll": 1,"dots":true,"arrow":false, responsive:[{breakpoint:480,settings:{slidesToShow:1}}]}; firstConfig = {"slidesToShow": 1, "slidesToScroll": 1,"arrows": false,"dots":true,"autoplay":true,"autoplaySpeed":2000};
ratingConfig = {"slidesToShow": 1, "slidesToScroll": 1,"arrows": true,"autoplay":true,"autoplaySpeed":2000,responsive:[{breakpoint:480,settings:{arrows:false}}]};
} }
.nav_color{ .nav_color{
background-color: red; background-color: #ffff;
} }
nav{ nav{
position: fixed; position: fixed;
width: 100%; width: 100%;
z-index: 10; z-index: 10;
.logo{ .logo{
max-width: 380px;
max-height: 78px;
img{ img{
width: 100%; width: 80%;
height: 100%; height: 100%;
} }
} }
......
...@@ -40,16 +40,22 @@ ...@@ -40,16 +40,22 @@
nav{ nav{
.logo{ .logo{
max-width: 250px !important; max-width: 250px !important;
img{
width: 100% !important;
}
} }
.navbar-collapse{ .navbar-collapse{
margin-left: 0px !important;
ul{ ul{
flex-direction: row !important;
li{ li{
width: 75px !important;
a{ a{
text-align: left !important; text-align: center !important;
} }
} }
.icon_box{ .icon_box{
margin-bottom: 10px !important; display: none !important;
} }
} }
} }
...@@ -140,6 +146,9 @@ h2{ ...@@ -140,6 +146,9 @@ h2{
width: 110px !important; width: 110px !important;
height: 100px !important; height: 100px !important;
} }
h4{
font-size: 18px !important;
}
} }
} }
} }
...@@ -150,6 +159,8 @@ h2{ ...@@ -150,6 +159,8 @@ h2{
} }
.rating_review_box{ .rating_review_box{
padding-top: 20px !important; padding-top: 20px !important;
ngx-slick-carousel{
.rating_slide{
.rating_review_box_one{ .rating_review_box_one{
.row{ .row{
.rating_head{ .rating_head{
...@@ -175,6 +186,9 @@ h2{ ...@@ -175,6 +186,9 @@ h2{
.rating_content{ .rating_content{
font-size: 18px !important; font-size: 18px !important;
margin: 25px 15px 25px 15px !important; margin: 25px 15px 25px 15px !important;
line-height: 1.5 !important;
}
}
} }
} }
} }
......
...@@ -4,3 +4,29 @@ ...@@ -4,3 +4,29 @@
.clear{ .clear{
clear: both; clear: both;
} }
.rating_review_box{
ngx-slick-carousel{
.slick-prev{
left: -40px;
height: auto;
width: auto;
&:before{
background-color: #000;
border: 1px solid #000;
border-radius: 50%;
font-size: 30px;
}
}
.slick-next{
right: -40px;
height: auto;
width: auto;
&:before{
background-color: #000;
border: 1px solid #000;
border-radius: 50%;
font-size: 30px;
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment