forked from drowl87/hextra_mirror

chore: support multiple search elements chore: sidebar display toc on mobile view chore: add hamburger menu to navbar on mobile chore: add markdown link hook for opening external link in new window chore: add sidebar footer - put search under params.type - make navbar link aware of external link
32 lines
607 B
CSS
32 lines
607 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import "typography.css";
|
|
@import "highlight.css";
|
|
@import "components/cards.css";
|
|
@import "components/steps.css";
|
|
@import "components/search.css";
|
|
@import "components/sidebar.css";
|
|
@import "components/navbar.css";
|
|
|
|
html {
|
|
@apply text-base antialiased;
|
|
font-feature-settings: "rlig" 1, "calt" 1, "ss01" 1;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
body {
|
|
@apply w-full bg-white dark:bg-dark dark:text-gray-100;
|
|
}
|
|
|
|
:root {
|
|
--primary-hue: 212deg;
|
|
--navbar-height: 4rem;
|
|
--menu-height: 3.75rem;
|
|
}
|
|
|
|
.dark {
|
|
--primary-hue: 204deg;
|
|
}
|