castopod/app/Resources/styles/radioBtn.css
Yassine Doghri 5c529a83aa feat(settings): add theme settings to set an accent color for all public pages
set 6 base accent colors: pine, lake, jacaranda, crimson, amber and onyx
2021-12-29 12:06:13 +00:00

23 lines
496 B
CSS

@layer components {
.form-radio-btn {
@apply absolute mt-3 ml-3 border-contrast border-3 text-accent-base;
&:focus {
@apply ring-accent;
}
&:checked {
@apply ring-2 ring-contrast;
& + label {
@apply text-accent-contrast bg-accent-base;
}
}
& + label {
@apply inline-block py-2 pl-8 pr-2 text-sm font-semibold rounded-lg cursor-pointer border-contrast bg-elevated border-3;
color: hsl(var(--color-text-muted));
}
}
}