-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
84 lines (70 loc) · 1.69 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Parallax IDE</title>
<link href="fonts/roboto.css" rel="stylesheet" type="text/css">
<link href="fonts/ionicons.css" rel="stylesheet" type="text/css">
<style type="text/css">
html, body {
margin: 0;
padding: 0;
font-family: Roboto, 'Helvetica Neue', Helvetica, Arial;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: greyscale;
text-rendering: optimizeLegibility;
}
@media not print {
html, body {
width: 100%;
height: 100%;
}
.CodeMirror {
display: flex;
flex-direction: column;
flex: 1;
}
.CodeMirror-scroll {
flex: 1;
}
.mfb-component__child-icon.ion-code-download {
font-size: 22px;
}
}
@media print {
html {
height: auto;
}
body * {
visibility: hidden;
}
.mfb-component__button--child {
display: none !important;
}
#editorContainer,
#editorContainer * {
visibility: visible;
}
#editorContainer {
display: block !important;
position: absolute;
top: 0;
left: 0;
}
#editorContainer .CodeMirror {
height: auto;
}
#editorContainer .CodeMirror-cursors {
visibility: visible;
}
#editorContainer .CodeMirror-cursor {
background: transparent;
}
}
</style>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>