Skip to content

Commit d29845b

Browse files
committed
jazz
1 parent 78cc6ee commit d29845b

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

pages/_includes/blog/nav.liquid

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h4 class="text-center text-lg font-bold">Vincent V</h4>
44
<div class="w-[2px] self-stretch rounded bg-white"></div>
55
<a
6-
class="flex w-fit flex-row items-center border-b-2 border-solid border-b-transparent text-sm font-semibold transition hover:border-b-white hover:opacity-60"
6+
class="flex w-fit flex-row items-center border-b-2 border-solid border-b-transparent text-sm font-semibold transition duration-200 hover:border-b-white hover:opacity-60"
77
href="/"
88
title="Home"
99
>
@@ -14,7 +14,7 @@
1414
<span>Home</span>
1515
</a>
1616
<a
17-
class="flex w-fit flex-row items-center border-b-2 border-solid border-b-transparent text-sm font-semibold transition hover:border-b-white hover:opacity-60"
17+
class="flex w-fit flex-row items-center border-b-2 border-solid border-b-transparent text-sm font-semibold transition duration-200 hover:border-b-white hover:opacity-60"
1818
href="/blog"
1919
title="Blog"
2020
>

pages/_includes/index/about.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
>
6666
<a
6767
href="https://en.wikipedia.org/wiki/Bogosort"
68-
class="m-0 font-semibold text-[#00C2FF] transition duration-200 hover:text-blue-100"
68+
class="m-0 border-b-4 border-solid border-transparent font-semibold text-[#00C2FF] transition duration-200 hover:border-[#00C2FF] hover:opacity-60"
6969
target="_blank"
7070
rel="noreferrer noopener"
7171
>bogosort</a

pages/_includes/index/contact.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
>
3737
<a
3838
href="https://forms.gle/ThEVfFZfQopvp1929"
39-
class="m-0 font-semibold text-[#00C2FF] transition duration-200 hover:text-blue-100"
39+
class="m-0 border-b-2 border-solid border-transparent font-semibold text-[#00C2FF] transition duration-200 hover:border-[#00C2FF] hover:opacity-60"
4040
target="_blank"
4141
rel="noreferrer noopener"
4242
>form</a

pages/_includes/index/intro.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<svg
44
id="logoInit"
55
width="175"
6-
class="invisible relative left-1/2 z-10 w-[110px] overflow-visible py-4 motion-reduce:visible motion-reduce:left-0 motion-reduce:z-0 motion-reduce:rotate-3 sm:w-[145px] lg:w-[175px]"
6+
class="invisible relative left-1/2 z-50 w-[110px] overflow-visible py-4 motion-reduce:visible motion-reduce:left-0 motion-reduce:rotate-3 sm:w-[145px] lg:w-[175px]"
77
viewBox="0 0 65 54"
88
fill="none"
99
xmlns="http://www.w3.org/2000/svg"

pages/_includes/index/nav.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<nav id="navbar" class="fixed z-10 w-full bg-[#0D0F20] p-6 sm:pl-9">
1+
<nav id="navbar" class="fixed z-40 w-full bg-[#0D0F20] p-6 sm:pl-9">
22
<div class="flex flex-row justify-center gap-x-7 text-base font-medium sm:justify-start">
33
<a
44
class="navbarLink inline-block animate-fade-in-down opacity-0 transition animation-delay-[1.5s] animation-duration-500 hover:scale-125 motion-reduce:animate-none motion-reduce:opacity-100 motion-reduce:hover:scale-100"

pages/_includes/index/projects.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
{% for project in projects %}
2626
{% assign delay = delay | plus: 50 %}
2727
<a
28-
class="projectCard group flex w-full select-text flex-col items-center rounded-2xl bg-white text-black opacity-0 transition hover:z-50 hover:scale-105 motion-reduce:opacity-100 motion-reduce:hover:scale-100 sm:flex-row animation-delay-[{{ delay }}ms] hover:bg-slate-200 "
28+
class="projectCard group flex w-full select-text flex-col items-center rounded-2xl bg-white text-black opacity-0 transition hover:z-10 hover:scale-105 motion-reduce:opacity-100 motion-reduce:hover:scale-100 sm:flex-row animation-delay-[{{ delay }}ms] hover:bg-slate-200 "
2929
draggable="false"
3030
href="{{ project.link }}"
3131
title="{{ project.title }}"

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ module.exports = {
150150
borderBottomWidth: "2px",
151151
transitionProperty: "border-color, opacity",
152152
transitionTimingFunction: "cubic-bezier(0.4, 0, 0.2, 1)",
153-
transitionDuration: "150ms",
153+
transitionDuration: "200ms",
154154
"&:hover": {
155155
borderColor: "rgb(147 197 253 / var(--tw-text-opacity))",
156156
opacity: 0.6,

0 commit comments

Comments
 (0)