-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsivestyle.css
68 lines (55 loc) · 1.37 KB
/
responsivestyle.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@media(max-width:991px) {
/* Custom Classes */
.text-content{
width: 100%;
}
/* Navbar Brand */
.navigation-wrap .navbar-brand img{
height: 3.8125rem;
}
.navigation-wrap{
text-align: center;
background-color: var(--white-color);
}
.navigation-wrap .nav-link{
line-height: 1.875rem;
color: var(--black-color);
}
/* Banner Design */
.top-banner{
padding: 9.375rem 0 9.375rem;
}
/* Carousel Design */
.testimonial-section .carousel-caption p{
padding: 0;
}
/* Footer Link */
@media (max-width:767px) {
/* Custom Css */
h1{
font-size: 2.8rem;
}
h2{
font-size: 1.3rem;
line-height: 28px;
}
/* Top Banner */
.top-banner{
padding: 10.375rem 0 9.375rem;
}
/* Carousel Design */
.testimonial-section .carousel-item{
padding: 11rem 3.125rem;
}
/* Footer Link */
.footer .footer-social a i{
padding: 0 0.75rem;
}
}
@media (max-width:330px) {
/* Carousel Design */
.testimonial-section .carousel-item{
padding: 13rem 3.125rem;
}
}
}