diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-01 17:57:27 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-01 17:57:37 +0530 | 
| commit | d3ce4232e9b4597dadfd9fa3c5dbfa59fbd407fd (patch) | |
| tree | e2d328c2745bd504e366e8313e9db43c59b8f5d1 /partials | |
| parent | d820ff61e3d269a43002b0331ff8dde3ce4d5122 (diff) | |
projects: init pages
Diffstat (limited to '')
| -rw-r--r-- | partials/navbar.html | 4 | ||||
| -rw-r--r-- | partials/project-list.html | 2 | ||||
| -rw-r--r-- | partials/tailwind_class_groups.css | 9 | 
3 files changed, 3 insertions, 12 deletions
| diff --git a/partials/navbar.html b/partials/navbar.html index 893659c..ccbc05b 100644 --- a/partials/navbar.html +++ b/partials/navbar.html @@ -1,11 +1,11 @@  <nav class="w-full mx-auto mt-10">    <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg lg:text-2xl"> -    <a href="/" class="cursor-pointer font-bold hover:underline"> +    <a href="/" class="cursor-pointer font-bold hover:underline justify-center">        COMPROMYSE      </a> -    <div class="flex items-center gap-4 flex-wrap"> +    <div class="flex items-center gap-4 flex-wrap justify-center md:justify-left">        <a href="/projects" class="hover:underline">          [ PROJECTS ]        </a> diff --git a/partials/project-list.html b/partials/project-list.html index d9833b6..2552385 100644 --- a/partials/project-list.html +++ b/partials/project-list.html @@ -14,7 +14,7 @@      <a href="/projects#bubbl" class="contents group">        <div class="project-list-heading">CHIP8Emu</div> -      <div class="project-list-description">A VM/interpreter for CHIP-8.</div> +      <div class="project-list-description">An Emulator/Interpreter for CHIP-8.</div>      </a>      <a href="/projects#bubbl" class="contents group"> diff --git a/partials/tailwind_class_groups.css b/partials/tailwind_class_groups.css deleted file mode 100644 index 1bae0be..0000000 --- a/partials/tailwind_class_groups.css +++ /dev/null @@ -1,9 +0,0 @@ -@layer components { -  .project-list-heading { -    @apply text-lg group-hover:underline group-hover:text-pink-900 group-hover:bg-pink-100 p-1; -  } - -  .project-list-description { -    @apply pl-3 border-l-3 border-dashed border-pink-300 group-hover:text-pink-900 group-hover:bg-pink-100 group-hover:underline flex items-center; -  } -} | 
