-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.css
More file actions
93 lines (76 loc) · 1.39 KB
/
services.css
File metadata and controls
93 lines (76 loc) · 1.39 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#services_intro {
width: 100%;
height: 95vh;
background-image: url("images/intro_pic_2.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin-top: 5vh;
}
#outer {
margin: 0 auto;
padding-top: 200px;
}
#inner {
width: 60%;
background-color: rgba(255, 255, 255, 0.8);
margin: 0 auto;
padding: 10px 10px 5px 10px;
}
#services_intro h1 {
text-align: center;
color: var(--popcorn);
font-size: 80px;
margin-top: 5%;
}
h2 {
text-align: center;
}
.service_p {
text-align: center;
width: 60%;
margin: auto;
text-align: center;
}
#service2 {
width: 100%;
padding: 50px 0;
background-color: var(--popcorn);
color: white;
}
#img_holder {
text-align: center;
margin-top: 50px;
}
#img_holder img {
width: 900px;
}
#service3 {
width: 80%;
margin: 50px auto;
}
#img_holder2 {
text-align: center;
}
#img_holder2 img {
width: 500px;
}
@media screen and (max-width: 1100px) {
#services_intro h1 {
font-size: 40px;
}
#services_intro {
background-image: none;
background-color: var(--popcorn);
margin-top: -15%;
height: 80%;
}
#img_holder img {
width: 90%;
height: auto;
}
#service3 #img_holder2 img {
display: none;
}
}