1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 01:09:35 +05:30

(refactor+feat): improved floating search config and implemented basic search page

This commit is contained in:
2023-11-06 00:02:45 +05:30
parent 33231c2bf3
commit 448700e364
4 changed files with 125 additions and 5 deletions

View File

@@ -941,6 +941,10 @@ video {
width: 100vw;
}
.w-\[40vw\] {
width: 40vw;
}
.rotate-\[15deg\] {
--tw-rotate: 15deg;
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));
@@ -1197,6 +1201,11 @@ video {
padding-bottom: 0.30rem;
}
.px-\[0\.82rem\] {
padding-left: 0.82rem;
padding-right: 0.82rem;
}
.text-center {
text-align: center;
}
@@ -1376,6 +1385,24 @@ video {
transition-duration: 150ms;
}
.transition-\[width\] {
transition-property: width;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-\[width_box-shadow\] {
transition-property: width box-shadow;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-\[width\2c _box-shadow\] {
transition-property: width, box-shadow;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.duration-100 {
transition-duration: 100ms;
}
@@ -1388,6 +1415,10 @@ video {
transition-duration: 500ms;
}
.duration-1000 {
transition-duration: 1000ms;
}
.last\:mb-3:last-child {
margin-bottom: 0.75rem;
}