25 lines
461 B
CSS
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);
|
|
}
|
|
}
|
|
}
|