-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
63 lines (50 loc) · 988 Bytes
/
styles.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.tooltip .tooltip-text {
visibility: hidden;
text-align: center;
padding: 2px 6px;
position: absolute;
z-index: 100;
}
.tooltip-click .tooltip-text {
visibility: hidden;
text-align: center;
padding: 2px 6px;
position: absolute;
z-index: 100;
}
.tooltip-click .tooltip-text visible {
visibility: visible !important;
}
.tooltip:hover .tooltip-text {
visibility: visible;
}
.markdown h1 {
@apply text-4xl font-black mt-2;
}
.markdown h2 {
@apply text-2xl font-extrabold mt-2 ml-4;
}
.markdown h3 {
@apply text-xl font-bold mt-2 ml-6;
}
.markdown p {
@apply text-lg mt-2 ml-8;
}
.markdown a {
@apply text-blue-600 underline;
}
.markdown .toc {
@apply border-solid border-4 border-gray-600 w-full p-1;
}
.markdown .toc ul {
@apply text-lg mt-2 ml-6 list-disc
}
.markdown ol {
@apply text-lg mt-2 ml-16 list-decimal
}
.markdown ul {
@apply text-lg mt-2 ml-16 list-disc
}