wordcamp-bristol-2019/wp-content/themes/twentynineteen-tailwindcss/src/css/components/forms.css

21 lines
298 B
CSS
Raw Normal View History

2019-03-28 09:35:58 +00:00
input[type=search] {
@apply border p-2;
&:focus {
@apply outline-none bg-gray-300
}
&::placeholder {
@apply text-black
}
}
input[type=submit] {
@apply bg-blue-600 py-2 px-4 rounded text-white block mt-2 text-sm font-bold;
&:hover,
&:focus {
@apply bg-blue-700
}
}