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

46 lines
540 B
CSS
Raw Normal View History

2019-03-17 22:50:21 +00:00
@tailwind base;
a {
2019-03-17 22:52:22 +00:00
@apply text-grey-darker 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-dark underline
}
@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 13:51:20 +00:00
@apply text-black font-bold pb-px border-b-2;
&:hover {
@apply border-transparent no-underline
}
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;