-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (115 loc) · 2.62 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
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
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Markdown Viewer</title>
<link rel="stylesheet" href="./styles/github-dark.css">
<style>
html, body {
height: 100%;
margin: 0;
}
body {
font-family: Arial, sans-serif;
display: flex;
height: 100%;
}
#fileListContainer {
display: flex;
flex-direction: column;
resize: horizontal;
width: 30%;
min-width: 50px;
height: 100%;
overflow: hidden;
transition: width 0.3s ease;
}
#toggleFileList {
padding: 5px;
margin: 10px;
}
#fileList {
flex: 1;
display: flex;
flex-direction: column;
border-right: 1px solid #ddd;
overflow-y: auto;
}
#filterInput {
flex-grow: 0;
height: 30px;
padding: 5px;
margin: 10px;
box-sizing: border-box;
min-width: 0;
display: none;
}
#fileListContainer:not([style*="width: 0"]) #filterInput {
display: block;
}
#fileListContent {
flex: 1;
overflow-y: auto;
list-style: none;
padding: 0;
margin: 0;
}
#fileListContent li {
padding: 10px;
cursor: pointer;
}
#fileListContent li:hover {
background: #ddd;
}
#content {
flex: 1;
padding: 30px 20px 20px 20px;
overflow: auto;
width: 100%;
height: 100%;
font-size: 16px;
}
#content pre {
display: block;
width: 100%;
white-space: pre-wrap;
word-wrap: break-word;
}
#content code {
display: block;
width: 100%;
overflow-wrap: break-word;
word-wrap: break-word;
}
#controls {
position: fixed;
top: 10px;
right: 10px;
margin-bottom: 5px;
}
#openFolder {
margin-bottom: 5px;
}
</style>
</head>
<body>
<div id="fileListContainer">
<button id="toggleFileList"><</button>
<div id="fileList">
<input type="text" id="filterInput" placeholder="Filter files...">
<ul id="fileListContent"></ul>
</div>
</div>
<div id="content"></div>
<div id="controls">
<button id="openFolder">Open Folder</button>
<button id="toggleTheme" title="Switch Theme">☀️</button>
<input type="range" id="opacitySlider" min="0.01" max="1" step="0.1" value="0.9">
<button id="zoomOut" title="Zoom Out">-</button>
<button id="zoomIn" title="Zoom In">+</button>
<button id="resetZoom" title="Reset Zoom">Reset</button>
</div>
<script src="renderer.js"></script>
</body>
</html>