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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*
* NOTE:
* - The use of browser-specific styles (-moz-, -webkit-) should be avoided.
* If used, they may not render correctly for people reading the email in
* a different browser than the one from which the email was sent.
* - The use of state-dependent styles (like a:hover) don't work because they
* don't match at the time the styles are made explicit. (In email, styles
* must be explicitly applied to all elements -- stylesheets get stripped.)
*/
/* This is the overall wrapper, it should be treated as the `body` section. */
.markdown-here-wrapper {
font-size: 15px;
word-break: break-all;
word-wrap: break-word;
}
/* To add site specific rules, you can use the `data-md-url` attribute that we
add to the wrapper element. Note that rules like this are used depending
on the URL you're *sending* from, not the URL where the recipient views it.
*/
/* .markdown-here-wrapper[data-md-url*="."] ul { color: red; } */
pre,
code {
font-family: Consolas, Inconsolata, Courier, monospace;
}
code:not(pre code) {
margin: 0 0.15em;
padding: 0 0.3em;
white-space: pre-wrap;
border: 1px solid rgba(128,128,128,0.3);
background-color: rgba(128,128,128,0.08);
border-radius: 3px;
display: inline; /* added to fix Yahoo block display of inline code */
word-break: normal;
word-wrap: normal;
color: #ff4757;
}
pre {
font-size: 1em;
line-height: 1.2em;
background: #fafafa;
padding: 0.5em;
border-radius: 6px;
}
pre code {
font-size: 0.85em;
display: block;
}
pre .mac-dots {
display: block;
padding: 0.4em 0.5em 0.8em 0.5em;
}
pre .mac-dot-item {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 10px;
margin-right: 6px;
}
pre .mac-dot-item:nth-of-type(1) {
background-color: rgb(237, 108, 96);
border: 1px solid rgb(220, 60, 54);
}
pre .mac-dot-item:nth-of-type(2) {
background-color: rgb(247,193,81);
border: 1px solid rgb(218,151,33);
}
pre .mac-dot-item:nth-of-type(3) {
background-color: rgb(100,200,86);
border: 1px solid rgb(27,161,37);
}
pre .line-number {
display: block;
float: left;
color: rgba(128,128,128,0.7);
padding: 0 0.5em;
text-align: center;
}
/* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlighted
code look non-monospace. This rule will override it. */
.markdown-here-wrapper[data-md-url*='wordpress.'] code span {
font: inherit;
}
/* Wordpress adds a grey background to `pre` elements that doesn't go well with
our syntax highlighting. */
.markdown-here-wrapper[data-md-url*='wordpress.'] pre {
background-color: transparent;
}
/* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing.
Note that we only use a top margin and not a bottom margin -- this prevents the
"blank line" look at the top of the email (issue #243).
*/
p {
/* !important is needed here because Hotmail/ uses !important to
kill the margin in <p>. We need this to win. */
margin: 1.2em 0;
}
table,
pre,
dl,
blockquote,
q,
ul,
ol {
margin: 1.2em 0;
}
ul,
ol {
padding-left: 2em;
}
li {
margin: 0.5em 0;
}
/* Space paragraphs in a list the same as the list itself. */
li p {
/* Needs !important to override rule above. */
margin: 0.5em 0 !important;
}
/* Smaller spacing for sub-lists */
ul ul,
ul ol,
ol ul,
ol ol {
margin: 0;
padding-left: 1em;
}
/* Use Roman numerals for sub-ordered-lists. (Like Github.) */
ol ol,
ul ol {
list-style-type: lower-roman;
}
/* Use letters for sub-sub-ordered lists. (Like Github.) */
ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
list-style-type: lower-alpha;
}
dl {
padding: 0;
}
dl dt {
font-size: 1em;
font-weight: bold;
font-style: italic;
}
dl dd {
margin: 0 0 1em;
padding: 0 1em;
}
blockquote,
q {
border-left: 4px solid #ddd;
padding: 0 1em;
color: #777;
quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
content: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 1.3em 0 1em;
padding: 0;
font-weight: bold;
padding-left: 0.5em;
border-width: 0px 0px 0px 4px;
border-style: solid;
border-left-color: #ff4757;
}
h1 {
/* font-size: 1.6em; */
font-size: 20px;
border-bottom: 1px solid rgba(255, 71, 87, 0.2);
}
h2 {
/* font-size: 1.4em; */
font-size: 18px;
border-bottom: 1px solid rgba(255, 71, 87, 0.1);
}
h3 {
/* font-size: 1.3em; */
font-size: 16px;
}
h4 {
/* font-size: 1.2em; */
font-size: 15px;
}
h5 {
/* font-size: 1em; */
font-size: 14px;
}
h6 {
/* font-size: 1em; */
font-size: 13px;
color: #777;
}
table {
padding: 0;
border-collapse: collapse;
border-spacing: 0;
font-size: 1em;
font: inherit;
border: 0;
}
tbody {
margin: 0;
padding: 0;
border: 0;
}
table tr {
border: 0;
border-top: 1px solid #ccc;
background-color: white;
margin: 0;
padding: 0;
}
table tr:nth-child(2n) {
background-color: #f8f8f8;
}
table tr th,
table tr td {
font-size: 1em;
border: 1px solid #ccc;
margin: 0;
padding: 0.5em 1em;
}
table tr th {
font-weight: bold;
background-color: #f0f0f0;
}