-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoon.html
101 lines (92 loc) · 1.97 KB
/
soon.html
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
101
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>BeardGames</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body>
<style>
body {
background-color: #644968;
background-image: url('clouds-background.jpg');
background-repeat: repeat-x;
padding: 0px;
margin: 0px;
}
#logo {
width: 980px;
margin: 0 auto;
padding-top: 50px;
z-index: 15;
position: relative;
display: block;
}
#clouds {
position: absolute;
top: 0px;
left: 0px;
z-index: 5;
width: 100%;
height: 500px;
background-image: url('clouds.png');
background-position: 0px 0px;
background-repeat: repeat-x;
background-size: cover;
-webkit-animation:clouds 120s linear infinite;
-moz-animation:clouds 120s linear infinite;
-o-animation:clouds 120s linear infinite;
}
#top-clouds {
position: absolute;
top: 0px;
left: 0px;
z-index: 10;
width: 100%;
height: 500px;
background-image: url('top-clouds.png');
background-position: 0px 0px;
background-repeat: repeat-x;
background-size: cover;
-webkit-animation:top-clouds 40s linear infinite;
-moz-animation:top-clouds 40s linear infinite;
-o-animation:top-clouds 40s linear infinite;
}
@-webkit-keyframes clouds {
0% {
left:0
}
100% {
background-position: -2128px 0px
}
}
@-moz-keyframes clouds {
0% {
left:0
}
100% {
background-position: -2128px 0px
}
}
@-webkit-keyframes top-clouds {
0% {
left:0
}
100% {
background-position: -2128px 0px
}
}
@-moz-keyframes top-clouds {
0% {
left:0
}
100% {
background-position: -2128px 0px
}
}
</style>
<div id="clouds"></div>
<div id="top-clouds"></div>
<img id="logo" src="logo-soon.png"/>
</body>
</html>