forked from drowl87/hextra_mirror

* update dev and build command chore: move contents to exampleSite chore: add configs to exampleSite chore: use tailwindcss/nesting * add postcss-import * move imports to the top chore: add config for theme dev chore: add compiled css chore: fix last updated issue chore: dont't ignore hugo_stats.json chore: update index page layout
32 lines
607 B
CSS
32 lines
607 B
CSS
@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";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
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;
|
|
}
|