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

markdown.css « css « assets - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bae72e2834285f623851aa896f917accd5d03f1 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.content {
  @apply text-primary-text leading-normal break-words;
}

.content > * {
  @apply mb-4;
}

.content li + li {
  @apply mt-1;
}

.content li > p + p {
  @apply mt-6;
}

.content strong {
  @apply font-semibold;
}

.content a {
  @apply text-eureka;
}

.content a:hover {
  @apply text-eureka underline;
}

.content strong a {
  @apply font-bold;
}

.content h1 {
  @apply leading-tight border-b text-4xl font-semibold mb-4 mt-6 pb-2;
}

.content h2 {
  @apply leading-tight border-b text-2xl font-semibold mb-4 mt-6 pb-2;
}

.content h3 {
  @apply leading-snug text-lg font-semibold mb-4 mt-6;
}

.content h4 {
  @apply leading-none text-base font-semibold mb-4 mt-6;
}

.content h5 {
  @apply leading-tight text-sm font-semibold mb-4 mt-6;
}

.content h6 {
  @apply leading-tight text-sm font-semibold text-secondary-text mb-4 mt-6;
}

.content blockquote {
  @apply text-base border-s-4 border-tertiary-text ps-4 pe-4 text-secondary-text;
}

.content code {
  @apply font-mono text-sm text-tertiary-text inline bg-tertiary-bg rounded p-1;
}

.content pre {
  @apply bg-tertiary-bg rounded p-4;
}

.content pre code {
  @apply block bg-transparent p-0 overflow-auto rounded-none;
}

.content ul {
  @apply text-base ps-8 list-disc;
}

.content ol {
  @apply text-base ps-8 list-decimal;
}

.content kbd {
  @apply text-xs inline-block rounded border p-1 align-middle font-normal font-mono shadow;
}

.content table {
  @apply block text-base border-secondary-text overflow-auto;
}

.content th {
  @apply border py-1 px-3;
}

.content td {
  @apply border py-1 px-3;
}

.content .katex {
  @apply overflow-x-auto overflow-y-hidden;
}

.content .katex * {
  @apply border-primary-text;
}

.content *:target {
  padding-top: 4rem;
  margin-top: -4rem;
}