Welcome to mirror list, hosted at ThFree Co, Russian Federation.

theme.scss « public - github.com/ianrodrigues/hugo-tailwind-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68acd5b5fec94e4953b99c1973468c93b900dc4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    @apply text-gray-800;
}

h1, h2, h3, h4, h5, h6, strong {
    @apply text-gray-900;
}

article > p, ul, ol {
    @apply text-lg tracking-wide;
}

article > p, ul, ol, pre:not(:last-child) {
    @apply mb-6;
}

article > ol, ul {
    @apply list-disc ml-8;
}

article > li:not(:last-of-type) {
    @apply mb-2;
}

article p > code {
    @apply p-1/2 bg-gray-400;
}

article > h2 {
    @apply text-2xl my-8 font-bold text-black;
}

a {
    @apply border-b border-black text-black;
}