22 lines
354 B
CSS
22 lines
354 B
CSS
textarea,
|
|
input[type=search] {
|
|
@apply p-2 mb-2 border border-gray-400;
|
|
|
|
&:focus {
|
|
@apply outline-none bg-gray-100
|
|
}
|
|
|
|
&::placeholder {
|
|
@apply text-black
|
|
}
|
|
}
|
|
|
|
input[type=submit] {
|
|
@apply block py-3 px-6 mt-2 rounded;
|
|
@apply bg-blue-700 text-white text-lg font-bold cursor-pointer;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
@apply bg-blue-800
|
|
}
|
|
}
|