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

76 lines
942 B
CSS
Raw Normal View History

2019-03-19 11:37:15 +00:00
/*
2019-03-22 22:17:33 +00:00
Theme Name: Twenty Nineteen - Tailwind CSS
Template: twentynineteen
2019-03-19 11:37:15 +00:00
*/
2019-03-17 22:50:21 +00:00
@tailwind base;
a {
@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 {
@apply text-blue-700
2019-03-17 22:50:21 +00:00
}
@tailwind components;
2019-03-22 23:49:42 +00:00
h2 {
&:before {
content: '';
@apply w-12 block border-t-2 border-gray-600 mb-6
}
}
2019-03-22 23:51:07 +00:00
.byline,
.posted-on,
.cat-links,
.comments-link,
.edit-link {
@apply flex items-center mr-3 mb-2;
svg {
@apply mr-2 fill-current text-gray-600
}
}
2019-03-22 23:51:14 +00:00
.screen-reader-text {
@apply absolute opacity-0 pointer-events-none
}
2019-03-23 07:18:14 +00:00
@import 'components/post.css';
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 {
@apply text-blue-700 underline;
2019-03-18 13:51:20 +00:00
&:hover {
@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;