2019-03-19 11:37:15 +00:00
|
|
|
/*
|
2019-03-22 22:17:33 +00:00
|
|
|
Theme Name: Twenty Nineteen - Tailwind CSS
|
2019-03-19 11:37:15 +00:00
|
|
|
*/
|
|
|
|
|
2019-03-17 22:50:21 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
|
|
|
a {
|
2019-03-18 18:37:21 +00:00
|
|
|
@apply text-gray-600 no-underline
|
2019-03-17 22:50:21 +00:00
|
|
|
}
|
2019-03-17 22:52:22 +00:00
|
|
|
|
2019-03-17 22:50:21 +00:00
|
|
|
a:hover,
|
|
|
|
a:focus {
|
2019-03-18 18:37:21 +00:00
|
|
|
@apply text-blue-700
|
2019-03-17 22:50:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@tailwind components;
|
|
|
|
|
2019-03-18 00:08:10 +00:00
|
|
|
.content {
|
2019-03-18 13:43:44 +00:00
|
|
|
@apply font-serif text-lg leading-loose;
|
|
|
|
@screen md {
|
|
|
|
@apply text-xl
|
|
|
|
}
|
2019-03-18 00:08:10 +00:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
@apply text-2xl font-bold mt-8 -mb-5
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2019-03-18 18:37:21 +00:00
|
|
|
@apply text-blue-700 underline;
|
2019-03-18 13:51:20 +00:00
|
|
|
|
|
|
|
&:hover {
|
2019-03-18 18:37:21 +00:00
|
|
|
@apply text-blue-800 no-underline
|
2019-03-18 13:51:20 +00:00
|
|
|
}
|
2019-03-18 00:08:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* + * {
|
|
|
|
@apply mt-6
|
|
|
|
}
|
|
|
|
|
2019-03-18 13:45:39 +00:00
|
|
|
ul {
|
|
|
|
@apply list-disc ml-6
|
|
|
|
}
|
|
|
|
|
2019-03-18 00:08:10 +00:00
|
|
|
li + li {
|
|
|
|
@apply mt-0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-17 22:50:21 +00:00
|
|
|
@tailwind utilities;
|