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

23 lines
354 B
CSS
Raw Normal View History

2019-03-28 09:43:54 +00:00
textarea,
2019-03-28 09:35:58 +00:00
input[type=search] {
2019-04-16 19:24:51 +00:00
@apply border border-gray-400 p-2 mb-2;
2019-03-28 09:35:58 +00:00
&:focus {
2019-03-28 20:08:11 +00:00
@apply outline-none bg-gray-100
2019-03-28 09:35:58 +00:00
}
&::placeholder {
@apply text-black
}
}
input[type=submit] {
2019-04-16 19:24:51 +00:00
@apply bg-blue-700 text-white block text-lg font-bold cursor-pointer;
@apply py-3 px-6 rounded mt-2;
2019-03-28 09:35:58 +00:00
&:hover,
&:focus {
2019-04-16 19:24:51 +00:00
@apply bg-blue-800
2019-03-28 09:35:58 +00:00
}
}