presentations/wp-content/themes/twentynineteen-tailwindcss/resources/css/components/comment-form.css

30 lines
370 B
CSS
Raw Normal View History

2019-04-17 00:01:56 +01:00
.comment-form {
@apply mt-20;
> * {
2019-06-16 00:41:34 +01:00
@apply mt-4
2019-04-17 00:01:56 +01:00
}
label {
@apply w-full block pb-2;
2019-06-16 00:41:34 +01:00
@apply text-sm text-gray-700
2019-04-17 00:01:56 +01:00
}
input,
textarea {
@apply w-full p-3 border border-gray-400;
&:focus {
2019-06-16 00:41:34 +01:00
@apply bg-white outline-none border-blue-700
2019-04-17 00:01:56 +01:00
}
}
.form-submit {
2019-06-16 00:41:34 +01:00
@apply mt-6
2019-04-17 00:01:56 +01:00
}
input[type=submit] {
2019-06-16 00:41:34 +01:00
@apply w-auto
2019-04-17 00:01:56 +01:00
}
}