-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
tailwind.css
67 lines (58 loc) · 1.15 KB
/
tailwind.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
figure img {
margin-left: auto !important;
margin-right: auto !important;
@apply my-0 !important;
}
figure figcaption {
text-align: center;
font-style: italic;
}
.fill-current {
fill: currentColor !important;
}
.markdown {
max-width: 100%;
}
.anchorjs-link {
@apply no-underline text-violet;
}
.anchorjs-link:hover {
@apply text-violet-light;
}
.note {
@apply mb-4 px-4 py-1 border-l-4 bg-opacity-50;
}
.note :is(h1, h2, h3, h4, h5, h6) {
@apply mt-2 mb-0;
}
.note p {
@apply my-2;
}
.note-intro {
@apply border-black-grape-200 dark:border-black-grape-400;
@apply text-justify;
}
.note-info {
@apply bg-black-grape-100 dark:bg-black-grape-500 border-black-grape-200 dark:border-black-grape-400;
}
.note-tip {
@apply bg-blue-100 dark:bg-black-grape-500 border-blue-200 dark:border-blue-400;
}
.note-important {
@apply bg-rose-100 dark:bg-black-grape-500 border-rose-200 dark:border-rose-400;
}
blockquote p {
@apply my-2 !important;
}
summary::-webkit-details-marker {
display: none;
}
.hljs {
background: none !important;
}
pre code.hljs {
padding: 0 !important;
}