Rename assets to resources
This commit is contained in:
parent
639e04b936
commit
96dd398974
14 changed files with 3 additions and 3 deletions
3
resources/css/components/blockquote.css
Normal file
3
resources/css/components/blockquote.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
blockquote {
|
||||
@apply border-l-4 border-blue-600 pl-4 px-6 py-2
|
||||
}
|
13
resources/css/components/button.css
Normal file
13
resources/css/components/button.css
Normal 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
|
||||
}
|
||||
}
|
54
resources/css/components/markup.css
Normal file
54
resources/css/components/markup.css
Normal 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
|
||||
}
|
||||
}
|
15
resources/css/components/note.css
Normal file
15
resources/css/components/note.css
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
6
resources/css/components/talks/video.css
Normal file
6
resources/css/components/talks/video.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
.talk-video {
|
||||
iframe,
|
||||
embed {
|
||||
@apply absolute h-full left-0 top-0 w-full
|
||||
}
|
||||
}
|
3
resources/css/components/widget.css
Normal file
3
resources/css/components/widget.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.widget {
|
||||
@apply block mb-6
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue