-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
executable file
·88 lines (74 loc) · 1.5 KB
/
css.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
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
body, html {
height: 100%;
margin: 0;
font: 400 15px/1.8 "Lato", sans-serif;
color: #777;
}
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5{
position: relative;
opacity: 0.65;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bgimg-1 {
background-image: url("img_parallax.jpg");
min-height: 100%;
}
.bgimg-2 {
background-image: url("img_parallax_2.jpeg");
min-height: 400px;
}
.bgimg-3 {
background-image: url("img_parallax_3.jpg");
min-height: 400px;
}
.bgimg-4 {
background-image: url("img_parallax_4.jpeg");
min-height: 100%;
}
.bgimg-5 {
background-image: url("img_parallax_5.jpeg");
min-height: 400px;
}
.caption {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
color: #000;
}
.caption span.border {
text-shadow: 2px 2px rgb(156, 200, 240);
padding: 18px;
font-size: 50px;
font-family: Georgia;
font-weight: 1000;
background-color: azure
}
h3 {
letter-spacing: 5px;
text-transform: uppercase;
font: 20px "Lato", sans-serif;
color: rgb(156, 200, 240)
}
ol {
text-align: center;
list-style-position: inside;
}
p {
text-align: center;
}
a {
color: black
}
whiteLink {
color: white
}
@media only screen and (max-device-width: 1400px) {
.bgimg-1, .bgimg-2, .bgimg-3, bgimg-4, .bgimg-5{
background-attachment: scroll;
}
}