This commit is contained in:
Oliver Davies 2018-05-28 22:55:23 +02:00
parent fa9652df3e
commit 9212cdb015
21 changed files with 301 additions and 188 deletions

View file

@ -0,0 +1,4 @@
.about-author {
@apply .mr-4 .float-left .rounded-full;
width: 75px;
}

View file

@ -0,0 +1,22 @@
p,
li {
code {
@apply .bg-grey-lighter .inline-block .font-mono .text-xs;
padding: 1px 3px;
}
}
pre code,
pre code.hljs,
.hljs {
@apply .bg-grey-lighter;
@apply .block;
@apply .border-grey-dark;
@apply .border-l-4;
@apply .font-mono;
@apply .leading-loose;
@apply .overflow-x-scroll;
@apply .p-4;
@apply .rounded;
@apply .text-xs;
}