feat: complete projects page
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
George Birikorang 2025-08-28 20:16:11 -04:00
parent 2595c7571e
commit ddc015cffb
11 changed files with 3473 additions and 564 deletions

View file

@ -757,6 +757,10 @@ video {
z-index: 30;
}
.z-\[60\] {
z-index: 60;
}
.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
@ -835,6 +839,17 @@ video {
margin-top: 2rem;
}
.mb-3 {
margin-bottom: 0.75rem;
}
.line-clamp-2 {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.block {
display: block;
}
@ -931,6 +946,18 @@ video {
height: 100vh;
}
.h-80 {
height: 20rem;
}
.max-h-\[90vh\] {
max-height: 90vh;
}
.max-h-full {
max-height: 100%;
}
.min-h-\[90vh\] {
min-height: 90vh;
}
@ -1059,6 +1086,10 @@ video {
max-width: 48rem;
}
.max-w-full {
max-width: 100%;
}
.flex-1 {
flex: 1 1 0%;
}
@ -1107,6 +1138,18 @@ video {
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));
}
.scale-95 {
--tw-scale-x: .95;
--tw-scale-y: .95;
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));
}
.scale-100 {
--tw-scale-x: 1;
--tw-scale-y: 1;
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));
}
.scale-y-\[-1\] {
--tw-scale-y: -1;
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));
@ -1259,6 +1302,10 @@ video {
flex-direction: column;
}
.flex-wrap {
flex-wrap: wrap;
}
.items-start {
align-items: flex-start;
}
@ -1365,6 +1412,10 @@ video {
overflow: visible;
}
.overflow-y-auto {
overflow-y: auto;
}
.overflow-x-hidden {
overflow-x: hidden;
}
@ -1433,6 +1484,18 @@ video {
border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
border-color: rgb(255 255 255 / 0.1);
}
.border-white\/30 {
border-color: rgb(255 255 255 / 0.3);
}
.border-white\/20 {
border-color: rgb(255 255 255 / 0.2);
}
.bg-\[\#1b2021\] {
--tw-bg-opacity: 1;
background-color: rgb(27 32 33 / var(--tw-bg-opacity, 1));
@ -1512,6 +1575,30 @@ video {
background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/80 {
background-color: rgb(0 0 0 / 0.8);
}
.bg-kh3-grey\/10 {
background-color: rgb(142 144 137 / 0.1);
}
.bg-black\/90 {
background-color: rgb(0 0 0 / 0.9);
}
.bg-white\/30 {
background-color: rgb(255 255 255 / 0.3);
}
.bg-black\/70 {
background-color: rgb(0 0 0 / 0.7);
}
.bg-black\/95 {
background-color: rgb(0 0 0 / 0.95);
}
.bg-opacity-20 {
--tw-bg-opacity: 0.2;
}
@ -1615,6 +1702,11 @@ video {
background-position: center;
}
.object-contain {
-o-object-fit: contain;
object-fit: contain;
}
.object-cover {
-o-object-fit: cover;
object-fit: cover;
@ -1632,6 +1724,18 @@ video {
padding: 2rem;
}
.p-6 {
padding: 1.5rem;
}
.p-2 {
padding: 0.5rem;
}
.p-4 {
padding: 1rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
@ -1692,6 +1796,16 @@ video {
padding-bottom: 1rem;
}
.px-3 {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.pb-1 {
padding-bottom: 0.25rem;
}
@ -1732,6 +1846,10 @@ video {
padding-top: 8rem;
}
.pb-2 {
padding-bottom: 0.5rem;
}
.text-center {
text-align: center;
}
@ -1895,6 +2013,14 @@ video {
color: rgb(255 255 255 / 0.85);
}
.text-white\/50 {
color: rgb(255 255 255 / 0.5);
}
.text-white\/70 {
color: rgb(255 255 255 / 0.7);
}
.underline {
text-decoration-line: underline;
}
@ -1903,6 +2029,10 @@ video {
opacity: 0;
}
.opacity-100 {
opacity: 1;
}
.shadow-2xl {
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
@ -1935,6 +2065,11 @@ video {
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
--tw-grayscale: grayscale(100%);
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@ -2030,6 +2165,12 @@ video {
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\:scale-110:hover {
--tw-scale-x: 1.1;
--tw-scale-y: 1.1;
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-kh3-red:hover {
--tw-border-opacity: 1;
border-color: rgb(176 48 55 / var(--tw-border-opacity, 1));
@ -2053,6 +2194,15 @@ video {
background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-black\/70:hover {
background-color: rgb(0 0 0 / 0.7);
}
.hover\:text-kh3-red:hover {
--tw-text-opacity: 1;
color: rgb(176 48 55 / var(--tw-text-opacity, 1));
@ -2063,6 +2213,11 @@ video {
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:text-kh3-black:hover {
--tw-text-opacity: 1;
color: rgb(33 40 41 / var(--tw-text-opacity, 1));
}
.focus\:border-transparent:focus {
border-color: transparent;
}
@ -2328,6 +2483,18 @@ video {
}
@media (min-width: 1024px) {
.lg\:h-full {
height: 100%;
}
.lg\:w-1\/3 {
width: 33.333333%;
}
.lg\:w-2\/3 {
width: 66.666667%;
}
.lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@ -2336,6 +2503,14 @@ video {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lg\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lg\:flex-row {
flex-direction: row;
}
.lg\:gap-12 {
gap: 3rem;
}