Thomas Dehaene commited on
Commit
2d1a730
·
1 Parent(s): 8f15500

Embed html

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