carhop__carhop-theme__DEV/resources/css/forms/forms.css
Antoine M 91d5b07144
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Refactoring forms and introducing infolettre styles
2025-10-20 14:26:23 +02:00

25 lines
461 B
CSS

.form-carhop {
}
.form-carhop--dark {
input,
select,
textarea {
@apply border-white !p-4 font-light text-xl;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
@apply text-white opacity-60;
}
input[type='submit'] {
@apply bg-white text-primary cursor-pointer;
transition: transform 0.3s ease;
&:hover {
@apply bg-white text-primary;
transform: scale(1.02);
}
}
}