diff options
Diffstat (limited to 'partials')
-rw-r--r-- | partials/navbar.html | 17 | ||||
-rw-r--r-- | partials/tailwind_class_groups.html | 7 |
2 files changed, 24 insertions, 0 deletions
diff --git a/partials/navbar.html b/partials/navbar.html new file mode 100644 index 0000000..d97ebb3 --- /dev/null +++ b/partials/navbar.html @@ -0,0 +1,17 @@ +<nav class="w-full mx-auto mt-10"> + <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg"> + + <a href="/" class="cursor-pointer font-semibold hover:underline"> + COMPROMYSE + </a> + + <a href="/projects" class="hover:underline"> + [ PROJECTS ] + </a> + + <a href="#" class="hover:underline"> + [ ABOUT ] + </a> + + </div> +</nav> diff --git a/partials/tailwind_class_groups.html b/partials/tailwind_class_groups.html new file mode 100644 index 0000000..ef1c6f2 --- /dev/null +++ b/partials/tailwind_class_groups.html @@ -0,0 +1,7 @@ +<style type="text/tailwindcss"> + @layer components { + .some-class { + @apply px-4 py-6 md:py-0 hover:bg-yellow-500 md:hover:bg-transparent text-white duration-500; + } + } +</style> |