2025-01-16 18:17:08 +08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
@layer components {
|
|
|
|
.btn-primary {
|
|
|
|
@apply py-2 px-4 bg-blue-200;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
@apply leading-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2025-01-17 15:02:25 +08:00
|
|
|
@apply text-[3em] tracking-[-2px] mb-8 mt-8 text-center;
|
2025-01-16 18:17:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
@apply text-[1.2em] tracking-[-1px] mb-[30px] text-center font-normal text-gray-400;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
@apply text-[1.1em] leading-[1.7];
|
|
|
|
}
|
|
|
|
}
|