Spaces:
Configuration error
Configuration error
| @import "tailwindcss"; | |
| @plugin "daisyui"; | |
| @plugin "daisyui" { | |
| themes: light --default, dark --prefersdark, cupcake; | |
| } | |
| html[data-theme="dark"] { | |
| color-scheme: dark; | |
| background-color: #1f2937; | |
| color: #ffffff; | |
| } | |
| html[data-theme="dark"] body { | |
| background-color: #1f2937; | |
| color: #ffffff; | |
| } | |
| html[data-theme="dark"] * { | |
| background-color: inherit; | |
| color: inherit; | |
| } | |
| * { | |
| transition-property: all; | |
| transition-timing-function: var( | |
| --tw-ease, | |
| var(--default-transition-timing-function) | |
| ); | |
| transition-duration: var(--tw-duration, var(--default-transition-duration)); | |
| --tw-duration: 200ms; | |
| transition-duration: 200ms; | |
| } | |
| @theme { | |
| --breakpoint-xxs: 21.25rem; /* COMMENT: 340px */ | |
| --breakpoint-xs: 23.125rem; /* COMMENT: 363px */ | |
| --breakpoint-xxl: 82.5rem; /* COMMENT: 1320px */ | |
| --color-picto-primary: #9929fb; | |
| --color-picto-primary-dark: #650fa0; | |
| --color-soft-white: #f0f1f3; | |
| --color-soft-dark: #87909d; | |
| } | |
| .btn-primary { | |
| @apply bg-picto-primary border-0 text-white hover:scale-[102%] hover:bg-picto-primary-dark transition-all duration-500; | |
| } | |
| body { | |
| font-family: "Work Sans", sans-serif; | |
| } | |
| .content { | |
| @apply max-xxl:w-full xxl:max-w-[1320px] xxl:mx-auto; | |
| } | |
| .section-title { | |
| @apply md:font-semibold text-3xl sm:text-4xl md:text-5xl font-medium; | |
| } | |
| .center { | |
| @apply flex justify-center items-center; | |
| } | |
| .introduction-profile-background { | |
| background: radial-gradient( | |
| circle at 12% 100%, | |
| #ffe2b0f5 1% 5px, | |
| transparent 15% | |
| ), | |
| /* bottom left */ | |
| radial-gradient(circle at 95% -15%, #da4df166 5%, transparent 30%), | |
| /* top right */ | |
| radial-gradient(circle at center right, #c4f5e9b2 2%, transparent 35%); /* center right */ | |
| } | |
| .blog-background { | |
| background: radial-gradient(circle at -10% 0%, #da4df166 1%, transparent 25%), | |
| radial-gradient(circle at 110% 30%, #c4f5e9b2 5%, transparent 25%); | |
| } | |