-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheditor.html
More file actions
51 lines (43 loc) · 1011 Bytes
/
editor.html
File metadata and controls
51 lines (43 loc) · 1011 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
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>BlogCat - Editor</title>
<link rel="stylesheet" href="/vendor/pico.classless.min.css" />
<script src="browser-polyfill.js"></script>
<script src="./vendor/rss-parser.min.js"></script>
<script src="./vendor/mithril.js"></script>
<script defer type="module" src="editor.js"></script>
<style type="text/css">
button {
margin: 3px;
}
button.secondary {
background-color: #525f7a;
}
.hide {
display: none;
}
.row {
display: flex;
flex-direction: row;
}
.image-thumbs {
display: grid;
grid: repeat(2, 60px) / auto-flow 80px;
margin-bottom: 20px;
}
.thumb {
max-width: 50px;
max-height: 50px;
}
</style>
</head>
<body>
<main>
<div id="app"></div>
</main>
</body>
</html>