This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (86 loc) · 2.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="theme-color" content="#333333" />
<meta name="robots" content="index, follow" />
<meta
name="description"
content="Tips and tricks of using XState for modeling with state machines and statecharts"
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://xstate.tips/favicon.jpg" />
<title>XState.tips</title>
<style>
body {
margin: 0;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: "Courier New", Courier, monospace;
font-size: 1.5rem;
line-height: 1.4;
}
main {
display: inline-block;
}
h1 {
font-size: 6rem;
background: linear-gradient(
to right,
#ff0 20%,
#234567 40%,
#32fd43 60%,
#ff0 80%
);
background-size: 200% auto;
color: #000;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 1s linear infinite;
}
p {
letter-spacing: 1px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
display: inline-flex;
}
li + li {
margin-left: 1rem;
}
a {
color: violet;
}
@keyframes shine {
to {
background-position: 200% center;
}
}
</style>
</head>
<body>
<main>
<h1>Coming Soon</h1>
<p>Meanwhile, follow us on Twitter to get notified of the release!</p>
<ul>
<li><a href="https://twitter.com/farskid">Farzad YZ</a></li>
<li>
<a href="https://twitter.com/jamestthompson3">Taylor Thompson</a>
</li>
</ul>
</main>
<script data-goatcounter="https://xstate-tips.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
</body>
</html>