Rename assets to resources

This commit is contained in:
Oliver Davies 2019-03-27 14:41:01 +00:00
parent 639e04b936
commit 96dd398974
14 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,3 @@
blockquote {
@apply border-l-4 border-blue-600 pl-4 px-6 py-2
}

View file

@ -0,0 +1,13 @@
.button {
@apply bg-blue-600 border-blue-600 border inline-block text-white no-underline py-2 px-3 rounded text-sm;
&:focus {
@apply py-2 px-3 m-0
}
&:active,
&:focus,
&:hover {
@apply bg-white text-blue-600
}
}

View file

@ -0,0 +1,54 @@
.markup {
@apply leading-normal;
h2,
h3 {
@apply text-black mb-3
}
h2 {
@apply mt-6 mb-2
}
p,
ul,
ol,
blockquote,
table,
figure,
pre,
[v-pre] {
&:not(:last-child) {
@apply mb-6
}
}
ul {
@apply list-disc ml-5
}
code {
@apply bg-gray-200 font-mono text-sm
}
p,
li {
code {
@apply inline-block border border-gray-300 font-bold mx-px p-1 leading-none
}
}
pre code,
.hljs {
@apply block leading-loose overflow-x-scroll p-6
}
figure,
img {
@apply block
}
figcaption {
@apply italic text-sm text-gray-800 text-center mb-0 mt-1
}
}

View file

@ -0,0 +1,15 @@
.note {
@apply bg-blue-200 border-blue-600 border-l-4 mb-4 p-4 rounded;
> *:not(:first-child) {
@apply mt-6
}
p a {
@apply text-black underline;
&:hover {
@apply no-underline
}
}
}

View file

@ -0,0 +1,6 @@
.talk-video {
iframe,
embed {
@apply absolute h-full left-0 top-0 w-full
}
}

View file

@ -0,0 +1,3 @@
.widget {
@apply block mb-6
}