-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 1.95 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<meta content="initial-scale=1,maximum-scale=1,user-scalable=no,width=device-width" name="viewport">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="referrer" content="unsafe-url">
<title>umbrella.to</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-105322223-1', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
<link href="https://fonts.googleapis.com/css?family=Lato:400" rel="stylesheet">
<style type="text/css">
html, body {
height: 100%;
}
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(175, 162, 255, 1);
animation: bg 15s infinite;
}
@keyframes bg {
0% {background-color: rgba(175, 162, 255, 1);}
20% {background-color: rgba(194, 231, 218, 1);}
40% {background-color: rgba(241, 255, 231, 1);}
60% {background-color: rgba(122, 137, 194, 1);}
80% {background-color: rgba(114, 120, 141, 1);}
}
.container {
text-align: center;
}
.emoji {
font-size: 126px;
font-weight: normal;
font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols", monospace;
}
.text {
color: white;
font-family: Lato;
}
p {
margin: 0;
}
</style>
</head>
<body>
<main class="container">
<p class="emoji">☂</p>
<p class="text">just a placeholder</p>
</main>
</body>
</html>