2017-10-24 21:40:41 +00:00
|
|
|
@import (less) "~font-awesome/css/font-awesome.css";
|
2017-11-01 21:06:56 +00:00
|
|
|
@import (less) "~highlightjs/styles/github-gist.css";
|
2017-10-24 21:40:41 +00:00
|
|
|
|
2017-11-08 22:27:30 +00:00
|
|
|
@tailwind preflight;
|
2017-10-07 08:00:03 +00:00
|
|
|
|
|
|
|
p,
|
|
|
|
li,
|
|
|
|
td {
|
2017-11-09 22:44:30 +00:00
|
|
|
a { @apply .text-blue; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
@apply .bg-blue;
|
|
|
|
@apply .inline-block;
|
|
|
|
@apply .rounded;
|
|
|
|
@apply .text-white;
|
|
|
|
@apply .px-4;
|
|
|
|
@apply .py-2;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:hover {
|
|
|
|
@apply .bg-blue-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
@apply .border-l-4 .border-blue .pl-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.with-border {
|
|
|
|
@apply .border .border-grey-light;
|
|
|
|
}
|
|
|
|
|
2017-11-18 08:27:13 +00:00
|
|
|
h1, h2, h3 { @apply .mb-2; }
|
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
p,
|
|
|
|
ul,
|
|
|
|
table,
|
|
|
|
pre,
|
|
|
|
.note {
|
|
|
|
@apply .mb-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@apply .text-grey-darkest;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
main a:not(.button) {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bullets,
|
|
|
|
main ul {
|
|
|
|
list-style: disc;
|
|
|
|
@apply .pl-4;
|
|
|
|
}
|
|
|
|
|
2017-11-19 15:03:07 +00:00
|
|
|
svg {
|
|
|
|
fill: currentColor;
|
|
|
|
}
|
|
|
|
|
2017-11-21 22:02:24 +00:00
|
|
|
.table-collapse { border-collapse: collapse }
|
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
@import "components/listing";
|
|
|
|
@import "components/post";
|
2017-11-29 23:43:13 +00:00
|
|
|
@import "components/post/about-author";
|
2017-11-28 12:35:49 +00:00
|
|
|
@import "components/table";
|
2017-11-19 20:03:27 +00:00
|
|
|
@import "components/talk/slides";
|
|
|
|
@import "components/talk/video";
|
2017-11-09 22:44:30 +00:00
|
|
|
@import "components/testimonial";
|
2017-11-08 22:27:30 +00:00
|
|
|
|
|
|
|
@tailwind utilities;
|