2018-03-02 20:16:33 +00:00
|
|
|
@import (less) "~font-awesome/css/font-awesome.css";
|
|
|
|
@import (less) "~highlightjs/styles/github-gist.css";
|
|
|
|
|
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 {
|
2018-01-30 18:03:08 +00:00
|
|
|
@apply .border .border-solid .border-grey-light;
|
2017-11-09 22:44:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-18 08:27:13 +00:00
|
|
|
h1, h2, h3 { @apply .mb-2; }
|
|
|
|
|
2018-03-10 11:39:08 +00:00
|
|
|
.content {
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
@apply .mt-6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
p,
|
|
|
|
ul,
|
2018-02-06 08:59:02 +00:00
|
|
|
ol,
|
2017-11-09 22:44:30 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-02-13 18:27:31 +00:00
|
|
|
@import 'components/listing.less';
|
|
|
|
@import 'components/post.less';
|
|
|
|
@import 'components/post/about-author.less';
|
|
|
|
@import 'components/post/code.less';
|
|
|
|
@import 'components/table.less';
|
|
|
|
@import 'components/talk/slides.less';
|
|
|
|
@import 'components/talk/video.less';
|
2018-02-13 18:47:15 +00:00
|
|
|
@import 'components/widget.less';
|
2017-11-08 22:27:30 +00:00
|
|
|
|
|
|
|
@tailwind utilities;
|