All checks were successful
Build and deploy updated apps / Build & deploy (push) Successful in 2m12s
73 lines
2.0 KiB
CSS
73 lines
2.0 KiB
CSS
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
.red {
|
|
border: 1px solid red;
|
|
}
|
|
|
|
.green {
|
|
border: 1px solid green;
|
|
}
|
|
|
|
@layer utilities {
|
|
.text-outline {
|
|
-webkit-text-stroke: 1px black;
|
|
color: gold;
|
|
}
|
|
|
|
.pxr {
|
|
@apply px-4 sm:px-6 lg:px-8;
|
|
}
|
|
|
|
.pyr {
|
|
@apply py-4 sm:py-6 lg:py-8;
|
|
}
|
|
|
|
.pr {
|
|
@apply p-4 sm:p-6 lg:p-8;
|
|
}
|
|
}
|
|
|
|
@theme static {
|
|
--color-gimblet: oklch(74.37% 0.06969 91.48);
|
|
--color-gimblet-50: oklch(97.851% 0.00669 97.351);
|
|
--color-gimblet-100: oklch(95.198% 0.01238 91.52);
|
|
--color-gimblet-200: oklch(90.103% 0.02653 90.109);
|
|
--color-gimblet-300: oklch(84.858% 0.04176 91.748);
|
|
--color-gimblet-400: oklch(79.678% 0.056 91.049);
|
|
--color-gimblet-500: oklch(74.37% 0.06969 91.48);
|
|
--color-gimblet-600: oklch(66.9% 0.08657 90.713);
|
|
--color-gimblet-700: oklch(55.892% 0.07041 91.887);
|
|
--color-gimblet-800: oklch(44.164% 0.05385 91.131);
|
|
--color-gimblet-900: oklch(31.471% 0.0355 91.688);
|
|
|
|
--color-sapphire-50: oklch(97.5% 0.005 260);
|
|
--color-sapphire-100: oklch(95.2% 0.01 260);
|
|
--color-sapphire-200: oklch(90% 0.02 260);
|
|
--color-sapphire-300: oklch(84% 0.035 260);
|
|
--color-sapphire-400: oklch(78% 0.05 260);
|
|
--color-sapphire-500: oklch(72% 0.065 260);
|
|
--color-sapphire-600: oklch(65% 0.075 260);
|
|
--color-sapphire-700: oklch(54% 0.06 260);
|
|
--color-sapphire-800: oklch(42% 0.045 260);
|
|
--color-sapphire-900: oklch(30% 0.03 260);
|
|
|
|
--color-sandstone-50: oklch(98% 0.003 85);
|
|
--color-sandstone-100: oklch(96% 0.006 85);
|
|
--color-sandstone-200: oklch(92% 0.012 85);
|
|
--color-sandstone-300: oklch(87% 0.02 85);
|
|
--color-sandstone-400: oklch(80% 0.03 85);
|
|
--color-sandstone-500: oklch(72% 0.035 85);
|
|
--color-sandstone-600: oklch(63% 0.03 85);
|
|
--color-sandstone-700: oklch(50% 0.025 85);
|
|
--color-sandstone-800: oklch(38% 0.02 85);
|
|
--color-sandstone-900: oklch(26% 0.015 85);
|
|
}
|
|
|
|
:root {
|
|
--ui-radius: 0rem;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
} |