-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
49 lines (48 loc) · 862 Bytes
/
responsive.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
@media screen and (max-width: 768px){
#sideNav {
width: 50%;
}
#menuBtn {
right: 20px;
top: 20px;
}
.banner-text h1{
font-size: 44px;
}
.title-text h1{
font-size: 35px;
}
.features{
flex-basis: 100%;
}
.features-img {
flex-basis: 100%;
}
.features-img img{
width: 100%;
}
.single-service{
flex-basis: 100%;
margin-bottom: 30px;
}
.service-desc p{
font-size: 12px;
}
hr{
margin: 5px auto;
}
.single-service:hover .service-desc{
bottom: 25% !important;
}
.testimonial-col{
flex-basis: 100%;
}
.footer-left, .footer-right{
flex-basis: 100%;
font-size: 14px;
}
.footer-img{
top: 25%;
max-width: 300px;
}
}