Search form styling
This commit is contained in:
parent
619403d57f
commit
20efc93406
|
@ -0,0 +1,20 @@
|
|||
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
|
||||
}
|
||||
}
|
|
@ -26,6 +26,7 @@ h2:before {
|
|||
}
|
||||
|
||||
@import 'components/content.css';
|
||||
@import 'components/forms.css';
|
||||
@import 'components/post.css';
|
||||
@import 'components/widgets.css';
|
||||
|
||||
|
|
Loading…
Reference in a new issue