45 lines
1.0 KiB
CSS
45 lines
1.0 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.button {
|
|
/* Colors */
|
|
@apply bg-fuchsia-900 hover:bg-fuchsia-800 active:bg-fuchsia-700 text-fuchsia-200 disabled:bg-gray-200 disabled:text-black;
|
|
|
|
/* Sizing and padding */
|
|
@apply rounded-lg p-1.5 md:w-24 min-w-fit text-center;
|
|
}
|
|
|
|
.input {
|
|
/* Colors */
|
|
@apply bg-fuchsia-200 text-fuchsia-800 disabled:bg-gray-200 disabled:text-black focus:border-fuchsia-800;
|
|
|
|
/* Sizing and padding */
|
|
@apply rounded-lg p-1.5 lg:p-1.5 w-full md:w-64;
|
|
}
|
|
|
|
.checkbox {
|
|
/* Colors */
|
|
@apply text-fuchsia-800 bg-fuchsia-200 rounded-full accent-fuchsia-200;
|
|
|
|
/* Sizing and padding */
|
|
@apply w-4 h-4 lg:w-5 lg:h-5;
|
|
}
|
|
|
|
.section {
|
|
@apply border-2 border-fuchsia-700 rounded-lg p-1 md:p-5 mt-6 shadow-md;
|
|
}
|
|
|
|
.section-header {
|
|
@apply text-2xl lg:text-5xl font-bold;
|
|
}
|
|
|
|
.subsection-header {
|
|
@apply text-xl lg:text-4xl font-bold;
|
|
}
|
|
|
|
a {
|
|
@apply border-2 border-dotted text-fuchsia-800 border-fuchsia-800 hover:border-transparent;
|
|
}
|
|
} |