-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (81 loc) · 1.46 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (81 loc) · 1.46 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
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
body, html {
height: 100%;
margin:0;
font-family: 'Ubuntu', sans-serif;
line-height: 180%;
color: #faf5f5;
text-align: center;
}
.parallax1 {
background-image: url(realp1.jpg);
min-height: 100%;
}
.parallax2 {
background-image: url(p2.webp);
min-height: 60%;
}
.parallax3 {
background-image: url(p3real.jpg);
min-height: 40%;
}
.parallax4 {
background-image: url(p4extra.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;
}
.head {
position: absolute;
color: #fff;
font-size: 500%;
top:50%;
width: 100%;
text-transform: uppercase;
letter-spacing: 20px;
animation: 3.0s ease;
cursor: pointer;
}
.head:hover{
color:transparent;
}
input{
color: #f7f3f3;
}
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');