32 lines
445 B
CSS
32 lines
445 B
CSS
/*
|
|
Theme Name: Twenty Nineteen - Tailwind CSS
|
|
Template: twentynineteen
|
|
*/
|
|
|
|
@tailwind base;
|
|
|
|
a {
|
|
@apply text-gray-600 no-underline
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
@apply text-blue-700
|
|
}
|
|
|
|
@tailwind components;
|
|
|
|
h2:before {
|
|
content: '';
|
|
@apply w-10 block border-t-2 border-gray-600 mb-4
|
|
}
|
|
|
|
.screen-reader-text {
|
|
@apply absolute opacity-0 pointer-events-none
|
|
}
|
|
|
|
@import 'components/content.css';
|
|
@import 'components/post.css';
|
|
|
|
@tailwind utilities;
|