<div class="m-6 rounded-lg bg-white p-6 shadow-md">
<h2 class="text-tomato text-xl font-medium">Tailwind Play</h2>
<p class="text-gray-600">Play CDN을 사용하면 좀 더 쉽고 빠르게 Tailwind를 체험해볼 수 있습니다.</p>
<button class="btn mt-4">클릭</button>
</div>
<style type="text/tailwindcss">
@layer components {
.btn {
@apply rounded bg-blue-500 px-4 py-2 font-bold text-white hover:bg-blue-600;
}
}
</style>
tailwind.config = {
theme: {
extend: {
colors: {
tomato: 'tomato',
}
}
}
}
This Pen doesn't use any external CSS resources.