-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
42 lines (41 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>tachyons-animate</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/tachyons/css/tachyons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="css/tachyons-animate.css">
</head>
<body>
<main class="measure center tc sans-serif black-80 absolute absolute--fill">
<div class="flex flex-column justify-center items-center h-100">
<header>
<h1 class="animated fadeInUp ease-out-circ d2 a-1 f2 fw3">
<code class="db black-40">'tachyons-animate'</code>
</h1>
<h2 class="animated fadeInUp ease-out-circ d-1 a-2">
Designed for choreographing <span class="nowrap">CSS animations</span>
</h2>
<div class="animated bounceIn ease-in-quad d-2 mt4">
<a
href="https://github.com/anater/tachyons-animate"
class="dib link bw1 b--solid b--dark-blue dark-blue fw9 pa3 br3 hover-white hover-bg-dark-blue"
>
View on Github
</a>
</div>
</header>
<footer class="animated zoomInDown ease-out-quad d-2 a-1 absolute left-0 bottom-2 w-100">
<a
href="http://andrewnater.com"
class="link fw9 dark-blue"
target="_blank"
>
Made by Andrew Nater
</a>
</footer>
</div>
</main>
</body>
</html>