-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.05 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
<!DOCTYPE html>
<html>
<title>Okey Run</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css"
rel="stylesheet"
/>
<body>
<div
class="flex flex-col justify-center items-center h-screen flex-wrap bg-white"
>
<div class="flex p-2">
<div class="max-w-sm rounded overflow-hidden shadow-lg">
<div class="px-6 py-4 bg-green-dark">
<div class="font-sans text-5xl font-black text-white">Okey!</div>
<div class="font-sans text-5xl font-black text-white">Run</div>
</div>
<div class="px-6 py-4">
<span
class="inline-block bg-grey-lighter rounded-full px-3 py-1 text-sm font-semibold text-grey-darker mr-2"
>#ItsOkey.run</span
>
</div>
</div>
</div>
<p class="text-center text-grey text-xs m-5">
©2019 bodhi. All rights reserved.
</p>
</div>
</body>
</html>