forked from Parth233/QuizzR-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparallax.css
More file actions
66 lines (62 loc) · 1.23 KB
/
parallax.css
File metadata and controls
66 lines (62 loc) · 1.23 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
body, html{
height:100%;
margin: 0;
font-size: 16px;
font-family:cursive,sans-serif;
font-weight: 400;
line-height: 1.8em;
color: rgb(7, 177, 189)
}
.pimg1, .pimg2, .pimg3{
position: relative;
opacity: 0.70;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.pimg1{
background-image: url('image4.jpg');
min-height: 100%;
}
.pimg2{
background-image: url('image3.jpg');
min-height: 400px;
}
.pimg3{
background-image: url('image5.jpg');
min-height: 400px;
}
.section{
text-align: center;
padding: 50px 80px;
}
.section-light{
background-color: #f4f4f4;
color: midnightblue;
}
.section-dark{
background-color: #282e34;
}
.ptext{
position: absolute;
top: 50%;
width: 100%;
text-align: center;
color: black;
font-size: 27px;
letter-spacing: 8px;
text-transform: uppercase;
}
.ptext .border{
background-color: chartreuse;
padding: 20px;
}
.ptext .border.trans{
background-color:thistle;
}
@media(max-width: 568px){
.pimg1, pimg2, .pimg3{
background-attachment: scroll;
}
}