forked from brijeshb42/medium-draft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.52 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
body {
font-size: 18px;
}
a, a:visited {
color: #08c;
}
.md-RichEditor-root {
font-family: 'Georgia', serif;
}
.md-RichEditor-editor {
max-width: 700px;
background: #fbffff;
}
.md-block-atomic-wrapper {
position: relative;
border: 1px solid #f7f7f7;
}
.md-block-atomic-embed button {
background: #fff;
border: 1px solid #7d7d7d;
}
.md-block-atomic-wrapper hr {
border: none;
background: #5a5a5a;
min-height: 3px;
max-width: 50px;
}
.md-RichEditor-editor .md-RichEditor-blockquote {
font-family: 'Hoefler Text', 'Georgia', serif;
}
.md-RichEditor-editor .public-DraftStyleDefault-pre {
font-family: 'Inconsolata', 'Menlo', 'Consolas', monospace;
}
.md-block-atomic-wrapper.md-block-atomic-wrapper-separator {
border-color: transparent;
}
</style>
</head>
<body>
<div id="app">Loading Editor</div>
<script type="text/javascript" src="/static/common.js"></script>
<script type="text/javascript" src="/static/vendor-react.js"></script>
<script type="text/javascript" src="/static/example.js"></script>
</body>
</html>