-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAC repair.css
66 lines (64 loc) · 1.15 KB
/
AC repair.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
#acServiceNav{
background-color: var(--secondary-color);
}
.Services{
padding: 50px 60px;
margin: left;
font-size: xx-large;
}
.subservice{
color: darkred;
}
.sub1{
font-size: large;
}
.image img{
padding: 20px 20px;
border-radius:5px;
width: 60%;
height: 300px;
transition: all 0.4s ease;
transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.image img:hover{
transform: scale(1.2);
}
.Services .sub3{
font-size: large;
}
/* media qureries */
@media screen and (max-width:450px) {
.Services {
padding: 1rem 1rem;
font-size: 1.7rem;
}
.Services h1{
font-size: 1.7rem;
}
.Services>:first-child{
margin-bottom: 1rem;
}
.Services h2{
font-size: 1.4rem;
}
.sub1{
font-size: 1rem;
text-align: justify;
}
.Services .sub3{
font-size: 1rem;
text-align: justify;
}
.image img {
padding: 0;
border-radius: 0;
width: 100%;
height: auto;
transform: none;
margin-bottom: 2rem;
margin-top: 1rem;
}
.image img:hover{
transform: none;
}
}