-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stochastic Blue</title>
<style>
@keyframes gradientAnimation {
0% { background-position: 50% 0%; }
50% { background-position: 52% 100%; }
100% { background-position: 50% 0%; }
}
body {
margin: 0;
height: 100vh;
background: linear-gradient(135deg, #ffffff 0%, #e6f3ff 30%, #d6ebff 50%, #e6f3ff 70%, #ffffff 100%);
background-size: 200% 200%;
animation: gradientAnimation 12s ease infinite;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.02);
pointer-events: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
opacity: 0.15;
}
</style>
</head>
<body>
</body>
</html>