Spaces:
Running
Running
File size: 1,294 Bytes
ad19202 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | @import "tailwindcss";
@import "fumadocs-ui/css/neutral.css";
@import "fumadocs-ui/css/preset.css";
@import "@repo/tailwind-config/theme.css";
@import "@repo/tailwind-config/tailwind-animate.css";
@source "../node_modules/fumadocs-ui/dist/**/*.js";
@variant dark (&:where(.dark, .dark *));
/* Basement scrollytelling demo fonts */
@font-face {
font-family: "BasementGrotesque";
src:
url("/scrolly-assets/fonts/BasementGrotesque-Regular.woff2")
format("woff2"),
url("/scrolly-assets/fonts/BasementGrotesque-Regular.woff2")
format("woff2");
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: "BasementGrotesque";
src:
url("/scrolly-assets/fonts/BasementGrotesque-Black.woff2")
format("woff2"),
url("/scrolly-assets/fonts/BasementGrotesque-BlackExpanded.woff2")
format("woff2");
font-style: normal;
font-weight: 900;
font-display: swap;
}
pre.shiki {
@apply mb-4 rounded-lg p-6;
}
#nd-sidebar {
@apply bg-card! top-[4.5rem] md:h-[calc(100dvh-4.5rem)]!;
button[data-search-full] {
@apply bg-transparent;
}
}
#nd-page .prose {
h1,
h2,
h3,
h4,
h5,
h6 {
a {
@apply no-underline!;
}
}
}
div[role="tablist"].bg-secondary {
@apply bg-muted!;
}
input[cmdk-input] {
@apply border-none focus-visible:ring-0;
}
|