Spaces:
Configuration error
Configuration error
File size: 1,887 Bytes
36edc55 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | @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%);
}
|