-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyles.css
107 lines (94 loc) · 1.69 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');
/* purgecss start ignore */
@tailwind base;
/* Boilerplate */
html {
@apply antialiased font-sans leading-tight text-gray-900;
font-feature-settings: 'liga' 1;
}
body {
@apply m-0;
}
svg {
height: 1em;
width: auto;
}
/* svg * {
@apply stroke-current;
}
svg.fill * {
@apply fill-current;
stroke: none;
} */
a {
@apply inline-block;
}
a,
button {
@apply rounded-sm transition duration-150 ease-in-out;
}
a:focus,
button:focus {
@apply outline-none shadow-outline;
}
p {
@apply leading-normal;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type='number'] {
-moz-appearance: textfield;
}
@tailwind components;
/* Custom components */
/* purgecss end ignore */
@tailwind utilities;
/* Custom utilities */
.smooth-scroll {
scroll-behavior: smooth;
}
.react-markdown {
@apply break-words;
}
.react-markdown *:last-child {
@apply mb-0;
}
.react-markdown h1 {
@apply text-xl mt-4 mb-3;
}
.react-markdown h2 {
@apply text-lg mt-4 mb-3;
}
.react-markdown h3,
.react-markdown h4,
.react-markdown h5,
.react-markdown h6 {
@apply text-base mt-4 mb-2;
}
.react-markdown p {
@apply text-gray-800 mb-2;
}
.react-markdown a {
@apply text-teal-500;
}
.react-markdown ul,
.react-markdown ol {
@apply leading-normal max-w-2xl mb-2 text-gray-800 pl-4;
}
.react-markdown ul {
@apply list-disc;
}
.react-markdown ol {
@apply list-decimal;
}
.react-markdown li {
@apply mb-2;
}
.react-markdown blockquote {
@apply border-l-2 border-teal-900 pl-2;
}