Compare commits
3 Commits
4db2fe00ea
...
947971adc0
Author | SHA1 | Date | |
---|---|---|---|
|
947971adc0 | ||
|
92639190ae | ||
|
ab3af3b07f |
3
components/accent.riot
Normal file
3
components/accent.riot
Normal file
@ -0,0 +1,3 @@
|
||||
<accent>
|
||||
|
||||
</accent>
|
64
components/card.riot
Normal file
64
components/card.riot
Normal file
@ -0,0 +1,64 @@
|
||||
<card>
|
||||
<!-- Card Outer Container -->
|
||||
<div class="min-h-screen bg-gray-100 py-6 flex flex-col justify-center sm:py-12">
|
||||
<!-- Card Inner Container -->
|
||||
<div class="relative py-3 sm:max-w-xl sm:mx-auto">
|
||||
<!-- Card Accent Color -->
|
||||
<div class="absolute inset-0 bg-gradient-to-r from-cyan-400 to-sky-500 shadow-lg transform -skew-y-6 sm:skew-y-0 sm:-rotate-6 sm:rounded-3xl"></div>
|
||||
<!-- Card Color-->
|
||||
<div class="relative px-4 py-10 bg-white shadow-lg sm:rounded-3xl sm:p-20">
|
||||
<!-- CARD TITLE -->
|
||||
<div>
|
||||
<!--<img src="/images/" class="h-7 sm:h-8" /> pic > txt?-->
|
||||
<h1 class="sm:text-4xl">COOL TITLE</h1>
|
||||
</div>
|
||||
<div class="divide-y divide-gray-200">
|
||||
<!-- CARD CONTENT -->
|
||||
<div class="py-8 text-base leading-6 space-y-4 text-gray-700 sm:text-lg sm:leading-7">
|
||||
<p>Some Text I'll figure out how to change using props hopefully</p>
|
||||
<ul class="list-disc space-y-2">
|
||||
<li class="flex items-start">
|
||||
<span class="h-6 flex items-center sm:h-7">
|
||||
<svg class="flex-shrink-0 h-5 w-5 text-cyan-500" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
</span>
|
||||
<p class="ml-2">
|
||||
Customizing your
|
||||
<code class="text-sm font-bold text-gray-900">tailwind.config.js</code> file
|
||||
</p>
|
||||
</li>
|
||||
<li class="flex items-start">
|
||||
<span class="h-6 flex items-center sm:h-7">
|
||||
<svg class="flex-shrink-0 h-5 w-5 text-cyan-500" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
</span>
|
||||
<p class="ml-2">
|
||||
Extracting classes with
|
||||
<code class="text-sm font-bold text-gray-900">@apply</code>
|
||||
</p>
|
||||
</li>
|
||||
<li class="flex items-start">
|
||||
<span class="h-6 flex items-center sm:h-7">
|
||||
<svg class="flex-shrink-0 h-5 w-5 text-cyan-500" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
</span>
|
||||
<p class="ml-2">Code completion with instant preview</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>I'm glad i figured out howto todo dis, bc dis is awesome af my g!!!!</p>
|
||||
</div>
|
||||
<div class="pt-6 text-base leading-6 font-bold sm:text-lg sm:leading-7">
|
||||
<p>Check dis out:</p>
|
||||
<p>
|
||||
<a href="https://metagame.wtf" class="text-purple-600 hover:text-purple-700"> follow→🐙</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</card>
|
@ -11,4 +11,8 @@
|
||||
"devDependencies": {
|
||||
"vite": "^2.5.4"
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user