mirror of
https://github.com/lancedb/lancedb.git
synced 2026-05-14 18:40:39 +00:00
This PR does the following: - Pare down the docs to only what's needed (Python, JS/TS API docs and a pointer to Rust docs) - Styling changes to be more in line with the main website theme The relative URLs remain unchanged, so assuming CI passes, there should be no breaking changes from the main docs site that points back here.
38 lines
1.3 KiB
CSS
38 lines
1.3 KiB
CSS
:root {
|
|
--md-primary-fg-color: #F46F52;
|
|
--md-accent-fg-color: #F46F52;
|
|
--md-text-font: "IBMPlexSans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
--md-code-font: "IBMPlexMono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
}
|
|
|
|
[data-md-color-scheme="slate"] {
|
|
--md-hue: 210;
|
|
--md-primary-fg-color: #E35B3F;
|
|
--md-accent-fg-color: #E35B3F;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: local("Inter_18pt"), url("Inter_18pt-Black.ttf");
|
|
}
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: local("Inter_18pt-Italic"), url("Inter_18pt-Italic.ttf");
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: local("Inter_18pt-Bold"), url("Inter_18pt-Bold.ttf");
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* @font-face {
|
|
font-family: "Inter";
|
|
src: local("IBM Plex Mono"), local("IBM-Plex-Mono"), local("IBMPlexMono"), local("IBM-Plex-Mono-Regular"), local("IBMPlexMono-Regular"), url("fonts/IBMPlexMono-Regular.woff2");
|
|
}
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: local("IBM Plex Mono Italic"), local("IBM-Plex-Mono-Italic"), local("IBMPlexMono-Italic"), url("fonts/IBMPlexMono-Italic.woff2");
|
|
font-style: italic;
|
|
} */
|