-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
38 lines (36 loc) · 863 Bytes
/
Copy pathlayout.html
File metadata and controls
38 lines (36 loc) · 863 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="//cdn.rawgit.com/c9/c9.ide.preview.markdown/master/github-markdown.css">
<style>
body, html{
margin: 0;
padding: 0;
}
#preview{
overflow: auto;
color: rgb(0, 0, 0);
min-width: 200px;
max-width: 790px;
margin: 0 auto;
padding: 30px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#preview pre code div {
background: transparent !important;
}
#preview .ace_line {
white-space: pre;
}
#preview .ace_static_highlight {
font-family: inherit;
font-size: inherit;
}
</style>
</head>
<body>
<div id="preview" class="markdown-body"><%- body %></div>
</body>
</html>