From 7c4d6120fb40e65d3f8134e6d723ba1f82dbd6bc Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 15 Sep 2024 23:04:07 +0500 Subject: [PATCH] feat: add hover animation for links --- index.html | 125 ++++++++++++++++++++++++++------------------ static/tailwind.css | 87 ++++++++++++++++++++++++++++++ 2 files changed, 161 insertions(+), 51 deletions(-) diff --git a/index.html b/index.html index 900ff51..dcd8d0d 100644 --- a/index.html +++ b/index.html @@ -87,13 +87,14 @@
-

PHOTOS

-
- -
+
@@ -127,8 +130,9 @@

SOCIAL MEDIA

- -
+ +

Mastodon

@@ -136,8 +140,9 @@
- -
+ +

Bluesky

@@ -145,8 +150,9 @@
- -
+ +

Twitter

@@ -154,8 +160,9 @@
- -
+ +

VKontakte

@@ -170,8 +177,9 @@

PROJECTS

-
-
+ +
@@ -182,9 +190,10 @@
- +
+ class="bg-[#0E1621] text-white w-full h-full p-2 flex flex-col justify-around relative overflow-hidden">
@@ -194,9 +203,10 @@
- +
+ class="bg-[#F5F5F5] text-black w-full h-full p-2 flex flex-col justify-around relative overflow-hidden">
@@ -206,9 +216,10 @@
- +
+ class="relative flex flex-col justify-around w-full h-full p-2 overflow-hidden text-white bg-black">

furaffinity-dl

Modification of the original project to @@ -216,8 +227,9 @@

- -
+ +

Github

@@ -235,8 +247,9 @@

CONTACT

- -
+ +

Telegram

@@ -244,8 +257,9 @@
- -
+ +

Matrix

@@ -253,8 +267,9 @@
- -
+ +

VK

@@ -277,35 +292,43 @@

COLLECTIONS & FRIENDS

- -
+ +

Red Pandas Stickers

-

Telegram channel with red panda sticker packs

+

Telegram channel with red panda + sticker packs

- -
+ +

Red Panda Images

-

Collection with 3000+ Photos and Videos of a red pandas

+

Collection with 3000+ Photos and + Videos of a red pandas

- -
+ +

blep stash

-

VK Group of a photographer. City and Trains photography

+

VK Group of a photographer. City and + Trains photography

- -
+ +

itc1205

-

Github profile of another furry programmer

+

Github profile of another furry + programmer

diff --git a/static/tailwind.css b/static/tailwind.css index 597d4cc..dc5ffcd 100644 --- a/static/tailwind.css +++ b/static/tailwind.css @@ -669,10 +669,18 @@ video { margin-top: 4rem; } +.box-border { + box-sizing: border-box; +} + .flex { display: flex; } +.aspect-\[1\.11\] { + aspect-ratio: 1.11; +} + .h-10 { height: 2.5rem; } @@ -717,6 +725,18 @@ video { height: 100vh; } +.h-\[374\] { + height: 374; +} + +.h-\[374px\] { + height: 374px; +} + +.h-\[375px\] { + height: 375px; +} + .max-h-\[40vh\] { max-height: 40vh; } @@ -786,6 +806,30 @@ video { width: 100%; } +.w-\[420px\] { + width: 420px; +} + +.w-\[424px\] { + width: 424px; +} + +.w-\[412px\] { + width: 412px; +} + +.w-\[432px\] { + width: 432px; +} + +.w-\[418px\] { + width: 418px; +} + +.w-\[422px\] { + width: 422px; +} + .max-w-\[1200px\] { max-width: 1200px; } @@ -886,6 +930,10 @@ video { gap: 2rem; } +.gap-6 { + gap: 1.5rem; +} + .overflow-hidden { overflow: hidden; } @@ -902,6 +950,14 @@ video { border-width: 4px; } +.border { + border-width: 1px; +} + +.border-2 { + border-width: 2px; +} + .border-l-8 { border-left-width: 8px; } @@ -919,6 +975,10 @@ video { border-color: rgb(0 0 0 / var(--tw-border-opacity)); } +.border-transparent { + border-color: transparent; +} + .bg-\[\#0E1621\] { --tw-bg-opacity: 1; background-color: rgb(14 22 33 / var(--tw-bg-opacity)); @@ -1141,6 +1201,18 @@ video { transition-duration: 150ms; } +.transition-\[border-width\] { + transition-property: border-width; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-\[border-color\] { + transition-property: border-color; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + .\[filter\:darken\(10\%\)\] { filter: darken(10%); } @@ -1211,6 +1283,21 @@ body { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } +.hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgb(255 255 255 / var(--tw-border-opacity)); +} + +.hover\:border-bg-gray:hover { + --tw-border-opacity: 1; + border-color: rgb(72 72 72 / var(--tw-border-opacity)); +} + +.hover\:border-bg-blue:hover { + --tw-border-opacity: 1; + border-color: rgb(41 143 245 / var(--tw-border-opacity)); +} + .hover\:underline:hover { text-decoration-line: underline; }