2023-12-23 20:33:25 -06:00
|
|
|
@layer tailwind-base, primereact, tailwind-utilities;
|
2023-12-23 14:54:38 -06:00
|
|
|
|
2023-12-23 20:33:25 -06:00
|
|
|
@layer tailwind-base {
|
|
|
|
@tailwind base;
|
2023-12-23 14:54:38 -06:00
|
|
|
}
|
|
|
|
|
2023-12-23 20:33:25 -06:00
|
|
|
@layer tailwind-utilities {
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2024-03-13 17:45:55 -05:00
|
|
|
}
|
|
|
|
|
2024-03-18 19:32:43 -05:00
|
|
|
body {
|
2024-03-19 12:32:05 -05:00
|
|
|
@apply font-blinker;
|
2024-03-18 19:32:43 -05:00
|
|
|
}
|
|
|
|
|
2024-03-19 12:32:05 -05:00
|
|
|
h1 {
|
|
|
|
@apply text-h1 font-blinker;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
@apply text-h2 font-blinker;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
@apply text-h3 font-blinker;
|
|
|
|
}
|
2024-03-18 19:32:43 -05:00
|
|
|
|
2024-03-13 17:45:55 -05:00
|
|
|
.p-tabmenu .p-tabmenu-nav {
|
|
|
|
background-color: transparent !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
|
|
|
|
background-color: transparent !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
2024-03-16 14:56:58 -05:00
|
|
|
|
|
|
|
.p-menubar-button .p-icon {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2024-03-16 16:37:47 -05:00
|
|
|
.p-button .pi.pi-bolt {
|
|
|
|
color: yellow;
|
2024-03-18 19:32:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* hero banner animation */
|
|
|
|
@keyframes flip {
|
|
|
|
0%, 100% {
|
|
|
|
transform: rotateX(0);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
45%, 60% { /* Adjusted for quicker opacity transition */
|
|
|
|
transform: rotateX(180deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flip-enter-active, .flip-exit-active {
|
|
|
|
animation-name: flip;
|
|
|
|
animation-duration: 800ms; /* Keep as is for smooth transition */
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
transform-origin: center center;
|
|
|
|
animation-fill-mode: forwards; /* Ensures the end state of the animation is retained */
|
|
|
|
}
|
2024-03-19 13:04:46 -05:00
|
|
|
|
|
|
|
/* YT thumbnails */
|
|
|
|
.markdown-content iframe {
|
|
|
|
max-width: 100vw;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
aspect-ratio: 16 / 9;
|
|
|
|
}
|