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
|
:root {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
line-height: 1.5;
font-weight: 400;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0;
min-width: 320px;
min-height: 100vh;
background: #f5f5f5;
}
#root {
height: 100vh;
width: 100vw;
overflow: hidden;
}
/* Global markdown styling */
.markdown-content {
padding: 12px;
}
.markdown-content p {
margin: 0 0 12px 0;
}
.markdown-content p:last-child {
margin-bottom: 0;
}
.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
margin: 16px 0 8px 0;
}
.markdown-content h1:first-child,
.markdown-content h2:first-child,
.markdown-content h3:first-child,
.markdown-content h4:first-child,
.markdown-content h5:first-child,
.markdown-content h6:first-child {
margin-top: 0;
}
.markdown-content ul,
.markdown-content ol {
margin: 0 0 12px 0;
padding-left: 24px;
}
.markdown-content li {
margin: 4px 0;
}
.markdown-content pre {
background: #f5f5f5;
padding: 12px;
border-radius: 4px;
overflow-x: auto;
margin: 0 0 12px 0;
}
.markdown-content code {
background: #f5f5f5;
padding: 2px 6px;
border-radius: 3px;
font-family: monospace;
font-size: 0.9em;
}
.markdown-content pre code {
background: none;
padding: 0;
}
.markdown-content blockquote {
margin: 0 0 12px 0;
padding-left: 16px;
border-left: 4px solid #ddd;
color: #666;
}
|