-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (46 loc) · 1.05 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<title>Pretty!</title>
<meta charset="utf-8">
<style>
body {
margin: 0;
height: 2000px;
/* background-image: url(bg.jpg);*/
background-image: linear-gradient( 90deg,
rgba(255, 0, 0, 1) 0%,
rgba(255, 255, 0, 1) 15%,
rgba(0, 255, 0, 1) 30%,
rgba(0, 255, 255, 1) 50%,
rgba(0, 0, 255, 1) 65%,
rgba(255, 0, 255, 1) 80%,
rgba(255, 0, 0, 1) 100%);
background-size: 800px 100px;
/* background-position: ;*/
-webkit-animation: rainbow 1s infinite linear;
}
@-webkit-keyframes rainbow {
0% { background-position: 0 0; }
100% { background-position: 800px 0; }
}
.pretty {
width: 100%;
height: 100%;
background-color: white;
box-sizing: border-box;
padding: 200px;
text-align: center;
position: fixed;
color: gray;
font-size: 30px;
font-family: helvetica;
}
</style>
</head>
<body>
<div class="pretty">
Scroll down…
</div>
</body>
</html>