forked from GetScatter/ScatterDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splash.html
59 lines (54 loc) · 1.4 KB
/
splash.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="./static/fonts/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="./static/fonts/scatter-fonts/css/scatter-fonts.css">
<link rel="stylesheet" href="./static/fonts/google-fonts/google-fonts.css">
<title>Scatter</title>
<style>
body {
margin:0;
padding:0;
}
.splash {
width:100%;
height:100vh;
display:flex;
justify-content: center;
align-items: center;
}
.logo-container {
padding:0 80px 50px;
text-align:center;
}
.logo {
font-size:140px;
color:#62d0fd;
font-family: 'Grand Hotel', sans-serif;
animation: float 2s ease-out;
animation-iteration-count: infinite;
}
@keyframes float {
0%, 100% {
transform:translateY(0px);
text-shadow:0 20px 20px rgba(0,0,0,0.03);
}
50% {
transform:translateY(5px);
text-shadow:0 10px 2px rgba(0,0,0,0.06);
}
}
</style>
</head>
<body>
<section class="splash">
<section>
<section class="logo-container">
<figure class="grand-hotel logo">Scatter</figure>
</section>
</section>
</section>
</body>
</html>