-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathiframe.html
More file actions
124 lines (96 loc) · 1.96 KB
/
Copy pathiframe.html
File metadata and controls
124 lines (96 loc) · 1.96 KB
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
<!doctype html>
<head>
<link rel="stylesheet" href="https://jonudell.info/hlib/hlib.css">
<style>
body {
margin-top:0px;
}
iframe {
width: 100%;
height: 100%;
}
svg {
fill:#582108b5;
}
#widget {
display: none;
}
#title {
font-size: smaller;
}
.controlsContainer {
display: flex;
font-size: smaller;
}
.copyIdButton {
display: none;
}
.counter {
color: #795548;
}
.deleteButton {
font-weight: bold;
cursor: pointer;
font-size:smaller;
margin-top: 2px;
}
.deleteButton a {
color: black;
margin-left: 4px;
}
.host {
color: #b5805a;
font-size: smaller;
}
.tagAdder {
font-size: x-large;
cursor: pointer;
margin-left: 4px;
}
.tagEditor .editOrSaveIcon .icon-pencil {
margin-top: 6px;
}
.tagEditor .editOrSaveIcon {
display: none;
}
.textEditor {
display: flex;
line-height: 1;
}
.tagEditor {
display: flex;
}
.textEditor .editOrSaveIcon .icon-pencil {
margin-top: 16px;
}
.toggleMajor {
color: #795548;
font-size: larger;
cursor: pointer;
}
.preformatted {
white-space: pre;
overflow-x: auto;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.urlHeading {
font-size: 10pt;
}
</style>
<script src="https://jonudell.info/hlib/hlib3.bundle.js" charset="utf-8"></script>
<script src="https://jonudell.info/hlib/showdown.min.js" charset="utf-8"></script>
</head>
<body>
<div id="svgDefs"></div>
<div id="controlsContainer" class="controlsContainer"></div>
<p id="title">
<div id="progress"></div>
</p>
<div id="widget"></div>
<script src="./iframe.js" charset="utf-8"></script>
</body>
</html>