forked from commune-ai/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdx-components.module.css
70 lines (61 loc) · 1.1 KB
/
mdx-components.module.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
.h1 {
font-size: 3rem;
}
.h2 {
font-size: 2rem;
}
.h3 {
font-size: 1.5rem;
}
.p {
padding-bottom: 1.25rem;
font-size: 1.2rem;
}
.a {
color: var(--ifm-color-primary);
}
.a:hover {
text-decoration: underline;
}
.ol {
list-style: decimal;
}
.ul {
list-style: disc;
}
.li {
margin-top: 0.25rem;
}
.pre {
margin: 0 0 1.25rem;
padding: 0;
background-color: #f6f8fa;
border-radius: 0.4rem;
color: inherit;
font: var(--ifm-code-font-size) / 1.45 var(--ifm-font-family-monospace);
overflow: auto;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
float: left;
min-width: 100%;
padding: 1rem;
}
.code {
font: inherit;
background-color: rgb(246, 247, 248);
border: 0.1rem solid rgba(0, 0, 0, 0.1);
border-radius: var(--ifm-global-radius);
font-family: var(--ifm-font-family-monospace);
font-size: var(--ifm-code-font-size);
padding: 0.1rem;
vertical-align: middle;
}
.pre > .code {
border: none;
}
.hr {
width: 100%;
background-color: rgb(190, 195, 201);
border: 0;
height: 1px;
margin: 1.5rem 0;
}