-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (42 loc) · 976 Bytes
/
style.css
File metadata and controls
42 lines (42 loc) · 976 Bytes
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
* {
margin: 0;
padding: 0;
}
.cmn_sect {
padding: 160px 0;
}
.single_bg_img {
background-image: url('./Images/bg_img1.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.parallex_bg_img {
background-image: url('./Images/bg_img2.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.multiple_bg_img {
background-image: url(./Images/bg_img3.jpeg), url(./Images/bg_img4.jpg);
background-repeat: no-repeat, repeat;
background-position: right 60px center, center;
background-size: auto 100%, cover;
}
.overlay_bg_img {
position: relative;
background-image: url('./Images/bg_img5.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.overlay_bg_img::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.5);
height: 100%;
}