victor HF staff commited on
Commit
9a19da6
1 Parent(s): e0435a8

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +72 -0
index.html ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <!DOCTYPE html>
3
+ <html>
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width" />
7
+ <title>Static Space</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ </head>
10
+ <body>
11
+ <!--
12
+ Welcome to Tailwind Play, the official Tailwind CSS playground!
13
+
14
+ Everything here works just like it does when you're running Tailwind locally
15
+ with a real build pipeline. You can customize your config file, use features
16
+ like `@apply`, or even add third-party plugins.
17
+
18
+ Feel free to play with this example if you're just learning, or trash it and
19
+ start from scratch if you know enough to be dangerous. Have fun!
20
+ -->
21
+ <div class="min-h-screen bg-gray-50 py-6 flex flex-col justify-center relative overflow-hidden sm:py-12">
22
+ <img src="https://play.tailwindcss.com/img/beams.jpg" alt="" class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 max-w-none" width="1308" />
23
+ <div class="absolute inset-0 bg-[url(https://play.tailwindcss.com/img/grid.svg)] bg-center [mask-image:linear-gradient(180deg,white,rgba(255,255,255,0))]"></div>
24
+ <div class="relative px-6 pt-10 pb-8 bg-white shadow-xl ring-1 ring-gray-900/5 sm:max-w-lg sm:mx-auto sm:rounded-lg sm:px-10">
25
+ <div class="max-w-md mx-auto">
26
+ <img src="https://play.tailwindcss.com/img/logo.svg" class="h-6" />
27
+ <div class="divide-y divide-gray-300/50">
28
+ <div class="py-8 text-base leading-7 space-y-6 text-gray-600">
29
+ <p>An advanced online playground for Tailwind CSS, including support for things like:</p>
30
+ <ul class="space-y-4">
31
+ <li class="flex items-center">
32
+ <svg class="w-6 h-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
33
+ <circle cx="12" cy="12" r="11" />
34
+ <path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
35
+ </svg>
36
+ <p class="ml-4">
37
+ Customizing your
38
+ <code class="text-sm font-bold text-gray-900">tailwind.config.js</code> file
39
+ </p>
40
+ </li>
41
+ <li class="flex items-center">
42
+ <svg class="w-6 h-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
43
+ <circle cx="12" cy="12" r="11" />
44
+ <path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
45
+ </svg>
46
+ <p class="ml-4">
47
+ Extracting classes with
48
+ <code class="text-sm font-bold text-gray-900">@apply</code>
49
+ </p>
50
+ </li>
51
+ <li class="flex items-center">
52
+ <svg class="w-6 h-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
53
+ <circle cx="12" cy="12" r="11" />
54
+ <path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
55
+ </svg>
56
+ <p class="ml-4">Code completion with instant preview</p>
57
+ </li>
58
+ </ul>
59
+ <p>Perfect for learning how the framework works, prototyping a new idea, or creating a demo to share online.</p>
60
+ </div>
61
+ <div class="pt-8 text-base leading-7 font-semibold">
62
+ <p class="text-gray-900">Want to dig deeper into Tailwind?</p>
63
+ <p>
64
+ <a href="https://tailwindcss.com/docs" class="text-sky-500 hover:text-sky-600">Read the docs &rarr;</a>
65
+ </p>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </div>
71
+ </body>
72
+ </html>