forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkdown.css
More file actions
123 lines (105 loc) · 2.14 KB
/
Copy pathmarkdown.css
File metadata and controls
123 lines (105 loc) · 2.14 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
.copilotKitMarkdown h1,
.copilotKitMarkdown h2,
.copilotKitMarkdown h3,
.copilotKitMarkdown h4,
.copilotKitMarkdown h5,
.copilotKitMarkdown h6 {
font-weight: bold;
line-height: 1.2;
margin-bottom: 1rem;
}
.copilotKitMarkdown h1 {
font-size: 1.5em;
}
.copilotKitMarkdown h2 {
font-size: 1.25em;
font-weight: 600;
}
.copilotKitMarkdown h3 {
font-size: 1.1em;
}
.copilotKitMarkdown h4 {
font-size: 1em;
}
.copilotKitMarkdown h5 {
font-size: 0.9em;
}
.copilotKitMarkdown h6 {
font-size: 0.8em;
}
.copilotKitMarkdown p {
margin-bottom: 1.25em;
}
.copilotKitMarkdown pre {
margin-bottom: 1.25em;
}
.copilotKitMarkdown blockquote {
border-color: rgb(142, 142, 160);
border-left-width: 2px;
border-left-style: solid;
line-height: 1.2;
padding-left: 10px;
}
.copilotKitMarkdown blockquote p {
padding: 0.7em 0;
}
.copilotKitMarkdown ul {
list-style-type: disc;
padding-left: 20px;
overflow: visible;
}
.copilotKitMarkdown li {
list-style-type: inherit;
list-style-position: outside;
margin-left: 0;
padding-left: 0;
position: relative;
overflow: visible;
}
.copilotKitCodeBlock {
position: relative;
width: 100%;
background-color: rgb(9 9 11);
border-radius: 0.375rem;
}
.copilotKitCodeBlockToolbar {
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
background-color: rgb(39 39 42);
padding-left: 1rem;
padding-top: 0.09rem;
padding-bottom: 0.09rem;
color: rgb(228, 228, 228);
border-top-left-radius: 0.375rem;
border-top-right-radius: 0.375rem;
font-family: sans-serif;
}
.copilotKitCodeBlockToolbarLanguage {
font-size: 0.75rem;
line-height: 1rem;
text-transform: lowercase;
}
.copilotKitCodeBlockToolbarButtons {
display: flex;
align-items: center;
margin-right: 0.25rem;
margin-left: 0.25rem;
}
.copilotKitCodeBlockToolbarButton {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 0.375rem;
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 500;
height: 2.5rem;
width: 2.5rem;
padding: 3px;
margin: 2px;
}
.copilotKitCodeBlockToolbarButton:hover {
background-color: rgb(55, 55, 58);
}