-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathParallax.css
More file actions
53 lines (45 loc) · 902 Bytes
/
Parallax.css
File metadata and controls
53 lines (45 loc) · 902 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
43
44
45
46
47
48
49
50
51
52
.bgimg-1, .bgimg-2, .bgimg-3 {
position: relative;
opacity: 0.9;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
width: 100%;
overflow: hidden;
}
.bgimg-1 {
background-image: url("Noober.jpg");
min-height: 400px;
}
.bgimg-2 {
background-image: url("Parts.jpg");
min-height: 400px;
}
.bgimg-3 {
background-image: url("Noober.jpg");
min-height: 400px;
}
.caption {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
color: #000;
z-index: -1;
}
.caption span.border {
background-color: transparent;
color: whitesmoke;
padding: 18px;
font-size: 100px;
letter-spacing: 10px;
}
h3 {
letter-spacing: 5px;
text-transform: uppercase;
font: 20px "Lato", sans-serif;
color: #111;
}