-
Notifications
You must be signed in to change notification settings - Fork 0
/
Parallax.css
63 lines (59 loc) · 1.15 KB
/
Parallax.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
body,html{
height: 100%;
margin: 0;
font-size: 16px;
font-family: "Lato", sans-serif;
font-weight: 400;
line-height: 1.8em;
color: #666;
}
.img1, .img2, .img3 {
position: relative;
opacity: 0.75;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.img1{
background-image: url(parallax.jpg);
min-height: 100%;
}
.img2{
background-image: url(https://jolly-kalam-23776e.netlify.app/parallaxsite/img/image2.jpg);
min-height: 400px;
}
.img3{
background-image: url(https://jolly-kalam-23776e.netlify.app/parallaxsite/img/image3.jpg);
min-height: 400px;
}
.section {
text-align: center;
padding: 50px 80px;
}
.section-dark {
background-color: #282e34;
color: #ddd;
}
.section-light {
background-color: #f4f4f4;
color: #666;
}
.ptext{
position:absolute;
top:50%;
width:100%;
text-align:center;
color:#000;
font-size:27px;
letter-spacing:8px;
text-transform:uppercase;
}
.ptext .border{
background-color:#111;
color:#fff;
padding:20px;
}
.ptext .border.trans{
background-color:transparent;
}