-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
100 lines (79 loc) · 1.8 KB
/
style.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
89
90
91
92
93
94
95
96
97
98
99
100
/*=======================================================
G o o d L u c k
=========================================================*/
body, html {
height: 100%;
margin:0;
font-family: 'Ubuntu', sans-serif;
line-height: 180%;
color: #666;
text-align: center;
}
.parallax1 {
background-image: url(img/New\ day.png);
min-height: 100%;
}
.parallax2 {
background-image: url(img/New\ sun.jpg);
min-height: 60%;
}
.parallax3 {
background-image: url(img/Power.png);
min-height: 40%;
}
.parallax4 {
background-image: url(img/Birdy.jpg);
min-height: 100%;
}
.parallax1, .parallax2, .parallax3, .parallax4 {
position: relative;
opacity: 0.70;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed; /*Important*/
}
.head {
position: absolute;
color: #fff;
font-size: 500%;
top:50%;
width: 100%;
text-transform: uppercase;
letter-spacing: 20px;
animation: drop 3.0s ease; /* Make things beautiful */
cursor: pointer;
}
.head:hover{
color:transparent;
}
section {
overflow: auto;
padding: 50px 80px;
}
footer{
width: 100%;
background-color: #323232;
color: #f2f2f2;
height: 8vh;
text-align: center;
padding-top: 5vh;
padding-bottom: 1vh;
}
@media (max-width:800px) {
.head{
font-size: 200%;
}
}
@keyframes drop {
0% {
opacity: 0;
transform: translateY(-80px);
}
100% {
opacity: 1;
transform: translateY(0px);
}
}
@import url('https://fonts.googleapis.com/css?family=Ubuntu'); /*IMPORTANT*/
/*========T H A N K Y O U=======*/